aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2015-06-27 23:39:50 +0200
committerDimitri Sokolyuk <demon@dim13.org>2015-06-27 23:39:50 +0200
commit61d87c904a60517d266a1b4ea452b20bc0f6623e (patch)
tree56f97b9c2b42a75ad6546f0c7dcb09dc2a672bcf
parentf23bb736ab87c45e473d1f502f523e8d7ecd3379 (diff)
Add basic rose structs
-rw-r--r--ROSE/rose.go15
1 files changed, 15 insertions, 0 deletions
diff --git a/ROSE/rose.go b/ROSE/rose.go
new file mode 100644
index 0000000..78ee585
--- /dev/null
+++ b/ROSE/rose.go
@@ -0,0 +1,15 @@
+package rose
+
+type Invoke struct {
+ InvokeId int
+ Opcode int
+ Argument interface{}
+}
+
+type ReturnResult struct {
+ InvokeId int
+ Result struct {
+ Opcode int
+ Argument interface{}
+ }
+}