X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=lib%2Fas3%2Fcode.h;h=5acc8d1b254add359a7d55c07b9ae64081fcd285;hb=c4b249e5376f0fd788b9189b70e7cd629d75767e;hp=6cf00f38c32b9b9dc1db7629f946cf7f6fe7519f;hpb=dbd04efb40a894c9d3d0c32c00e0e65d27115357;p=swftools.git diff --git a/lib/as3/code.h b/lib/as3/code.h index 6cf00f3..5acc8d1 100644 --- a/lib/as3/code.h +++ b/lib/as3/code.h @@ -1,5 +1,5 @@ -#ifndef __code_h__ -#define __code_h__ +#ifndef __abc_code_h__ +#define __abc_code_h__ #include "../q.h" @@ -45,7 +45,6 @@ struct _lookupswitch { struct _codestats { int max_stack; int local_count; - int init_scope_depth; int max_scope_depth; int flags; }; @@ -69,5 +68,8 @@ codestats_t* code_get_statistics(code_t*code, exception_list_t*exceptions); void codestats_print(codestats_t*s); void codestats_free(codestats_t*s); +code_t* code_append(code_t*code, code_t*toappend); + +#define code_new() (0) #endif