From 61d87c904a60517d266a1b4ea452b20bc0f6623e Mon Sep 17 00:00:00 2001 From: Dimitri Sokolyuk Date: Sat, 27 Jun 2015 23:39:50 +0200 Subject: Add basic rose structs --- ROSE/rose.go | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 ROSE/rose.go (limited to 'ROSE') 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{} + } +} -- cgit v1.2.3