aboutsummaryrefslogtreecommitdiff
path: root/rose/rose.go
blob: 295f0e035f57e963f87eb340593686b865d9f9a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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
	}
}