aboutsummaryrefslogtreecommitdiff
path: root/rose/rose.go
diff options
context:
space:
mode:
Diffstat (limited to 'rose/rose.go')
-rw-r--r--rose/rose.go19
1 files changed, 19 insertions, 0 deletions
diff --git a/rose/rose.go b/rose/rose.go
new file mode 100644
index 0000000..295f0e0
--- /dev/null
+++ b/rose/rose.go
@@ -0,0 +1,19 @@
+package rose
+
+// 2.4.6.0
+
+// Context-specific Constructed 1
+type Invoke struct {
+ InvokeId int
+ Opcode int
+ Argument []byte
+}
+
+// Context-specific Constructed 2
+type ReturnResult struct {
+ InvokeId int
+ Result struct {
+ Opcode int
+ Argument []byte
+ }
+}