aboutsummaryrefslogtreecommitdiff
path: root/ROSE/rose.go
diff options
context:
space:
mode:
Diffstat (limited to 'ROSE/rose.go')
-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
}
}