aboutsummaryrefslogtreecommitdiff
path: root/ROSE/rose.go
blob: 78ee58590eb8cf3985f5777bfe41e60be59e5080 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package rose

type Invoke struct {
	InvokeId int
	Opcode   int
	Argument interface{}
}

type ReturnResult struct {
	InvokeId int
	Result   struct {
		Opcode   int
		Argument interface{}
	}
}