aboutsummaryrefslogtreecommitdiff
path: root/ROSE/rose.go
blob: d02ed854f0870d3efb71344e19fbc6c96dc21984 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package rose

// 2.4.6.0

type RawContent []byte

// Context-specific Constructed 1
type Invoke struct {
	InvokeId int
	Opcode   int
	Argument RawContent
}

// Context-specific Constructed 2
type ReturnResult struct {
	InvokeId int
	Result   struct {
		Opcode   int
		Argument RawContent
	}
}