aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ROSE/rose.go6
1 files changed, 2 insertions, 4 deletions
diff --git a/ROSE/rose.go b/ROSE/rose.go
index d02ed85..295f0e0 100644
--- a/ROSE/rose.go
+++ b/ROSE/rose.go
@@ -2,13 +2,11 @@ package rose
// 2.4.6.0
-type RawContent []byte
-
// Context-specific Constructed 1
type Invoke struct {
InvokeId int
Opcode int
- Argument RawContent
+ Argument []byte
}
// Context-specific Constructed 2
@@ -16,6 +14,6 @@ type ReturnResult struct {
InvokeId int
Result struct {
Opcode int
- Argument RawContent
+ Argument []byte
}
}