X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=lib%2Fas3%2Fregistry.h;h=0fb84a30860107b4bac2de6da5eb73666a6426b6;hb=3fb75ef418267cb0f7370d365b3a37b8013fbee9;hp=1784563c4512e5ebc05416527b3845f63991b313;hpb=015fead14e2466763ecfff196756c53f293b266a;p=swftools.git diff --git a/lib/as3/registry.h b/lib/as3/registry.h index 1784563..0fb84a3 100644 --- a/lib/as3/registry.h +++ b/lib/as3/registry.h @@ -26,9 +26,10 @@ #include "pool.h" +DECLARE(packageinfo); DECLARE(classinfo); -DECLARE_LIST(classinfo); DECLARE(memberinfo); +DECLARE_LIST(classinfo); struct _classinfo { U8 access; @@ -36,7 +37,7 @@ struct _classinfo { const char*package; const char*name; union { - int slot; // slot nr in initscript traits + ptroff_t slot; // slot nr in initscript traits classinfo_t*cls; // specific class of a Class type memberinfo_t*function; //specific function of a Function type }; @@ -66,7 +67,7 @@ struct _memberinfo { }; extern type_t classinfo_type; -extern type_t function_signature_type; +extern type_t memberinfo_type; void registry_init(); @@ -75,6 +76,7 @@ memberinfo_t* memberinfo_register(classinfo_t*cls, const char*name, U8 type); // static multinames classinfo_t* registry_getanytype(); +classinfo_t* registry_getarrayclass(); classinfo_t* registry_getobjectclass(); classinfo_t* registry_getnumberclass(); classinfo_t* registry_getstringclass(); @@ -82,9 +84,8 @@ classinfo_t* registry_getintclass(); classinfo_t* registry_getuintclass(); classinfo_t* registry_getnullclass(); classinfo_t* registry_getbooleanclass(); -classinfo_t* registry_getfunctionclass(); classinfo_t* registry_getMovieClip(); -classinfo_t* registry_getfunctionclass(memberinfo_t*f); +classinfo_t* memberinfo_asclass(memberinfo_t*f); classinfo_t* registry_getclassclass(classinfo_t*a); classinfo_t* registry_findclass(const char*package, const char*name); @@ -96,6 +97,8 @@ multiname_t* classinfo_to_multiname(classinfo_t*cls); char registry_isfunctionclass(); char registry_isclassclass(); +classinfo_t* memberinfo_gettype(memberinfo_t*); + /* convenience functions */ #define sig2mname(x) classinfo_to_multiname(x) #define TYPE_ANY registry_getanytype() @@ -113,7 +116,9 @@ char registry_isclassclass(); #define TYPE_STRING registry_getstringclass() #define TYPE_IS_STRING(t) ((t) == registry_getstringclass()) -#define TYPE_FUNCTION(f) registry_getfunctionclass(f) +#define TYPE_OBJECT registry_getobjectclass() + +#define TYPE_FUNCTION(f) memberinfo_asclass(f) #define TYPE_IS_FUNCTION(t) registry_isfunctionclass(t) #define TYPE_CLASS(f) registry_getclassclass(f)