From 2b4528f54bd8893213839f8c57dcfd9a0ce30cef Mon Sep 17 00:00:00 2001 From: Dimitri Sokolyuk Date: Tue, 11 Aug 2015 13:24:27 +0200 Subject: Replace RawContent with []byte --- ROSE/rose.go | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'ROSE') diff --git a/ROSE/rose.go b/ROSE/rose.go index d02ed85..295f0e0 100644 --- a/ROSE/rose.go +++ b/ROSE/rose.go @@ -2,13 +2,11 @@ package rose // 2.4.6.0 -type RawContent []byte - // Context-specific Constructed 1 type Invoke struct { InvokeId int Opcode int - Argument RawContent + Argument []byte } // Context-specific Constructed 2 @@ -16,6 +14,6 @@ type ReturnResult struct { InvokeId int Result struct { Opcode int - Argument RawContent + Argument []byte } } -- cgit v1.2.3