aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2015-06-29 00:26:41 +0200
committerDimitri Sokolyuk <demon@dim13.org>2015-06-29 00:26:41 +0200
commitb086ed578586541cb8e22b0b312552fa9e798110 (patch)
tree2ebb59e452af33854dea9e6bbe42d15aa237003b
parent175a90ff9d3de85eb1df4f9ab63ece0a47521932 (diff)
Add RawContent
-rw-r--r--ROSE/rose.go6
1 files changed, 4 insertions, 2 deletions
diff --git a/ROSE/rose.go b/ROSE/rose.go
index 1296e62..d02ed85 100644
--- a/ROSE/rose.go
+++ b/ROSE/rose.go
@@ -2,11 +2,13 @@ package rose
// 2.4.6.0
+type RawContent []byte
+
// Context-specific Constructed 1
type Invoke struct {
InvokeId int
Opcode int
- Argument interface{}
+ Argument RawContent
}
// Context-specific Constructed 2
@@ -14,6 +16,6 @@ type ReturnResult struct {
InvokeId int
Result struct {
Opcode int
- Argument interface{}
+ Argument RawContent
}
}