aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2015-08-11 13:24:27 +0200
committerDimitri Sokolyuk <demon@dim13.org>2015-08-11 13:24:27 +0200
commit2b4528f54bd8893213839f8c57dcfd9a0ce30cef (patch)
tree63dbcf498e3671a2f4cca0e7e488cd3d61fd9973
parent4f101cdc4c3a5eb0393b416e57dabd7c7c490907 (diff)
Replace RawContent with []byte
-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
}
}