X-Git-Url: http://git.asbjorn.biz/?p=swftools.git;a=blobdiff_plain;f=lib%2Fas3%2Fopcodes.h;h=6bc38b8423c8ad792b70e24b753d4c2796de4c3f;hp=b353243bbe287c99bb393ecce0e16be9ba3726cc;hb=0fd17f47ee30d90181e51f30fc17a6c31646137e;hpb=7b50420de50a9123799cf7a4d26daf8f2f3eeaa9 diff --git a/lib/as3/opcodes.h b/lib/as3/opcodes.h index b353243..6bc38b8 100644 --- a/lib/as3/opcodes.h +++ b/lib/as3/opcodes.h @@ -501,6 +501,12 @@ code_t* abc_urshift(code_t*prev); code_t* abc_applytype(code_t*prev, int v); #define applytype(method,v) (method->code = abc_applytype(method->code,v)) #define OPCODE_APPLYTYPE 0x53 +code_t* abc___pushpackage__(code_t*prev, char* name); +#define __pushpackage__(method,name) (method->code = abc___pushpackage__(method->code,name)) +#define OPCODE___PUSHPACKAGE__ 0xfb +code_t* abc___pushpackage__2(code_t*prev, string_t* s); +#define __pushpackage__2(method,s) (method->code = abc___pushpackage__2(method->code,s)) +#define OPCODE___PUSHPACKAGE__2 0xfb code_t* abc___rethrow__(code_t*prev); #define __rethrow__(method) (method->code = abc___rethrow__(method->code)) #define OPCODE___RETHROW__ 0xfc