X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=lib%2Fas3%2Fregistry.h;h=31267bf2a86fa02655371478990ae4e006653073;hb=36a1fac8ea3a7457f25b1b4209b5fc918cc6af44;hp=60ac6ccb471cf37ed2c14a259b9371973cc6fd03;hpb=f5d494794ee290c1a0f1dc4d4b2156b04c9a5a97;p=swftools.git diff --git a/lib/as3/registry.h b/lib/as3/registry.h index 60ac6cc..31267bf 100644 --- a/lib/as3/registry.h +++ b/lib/as3/registry.h @@ -77,7 +77,7 @@ struct _classinfo { classinfo_t*superclass; dict_t members; void*data; //TODO: get rid of this- parser.y should pass type/value/code triples around - classinfo_t*interfaces[0]; + classinfo_t*interfaces[]; }; struct _memberinfo { U8 kind,subtype,flags,access; @@ -109,6 +109,7 @@ struct _varinfo { constant_t*value; }; +extern type_t memberinfo_type; extern type_t slotinfo_type; char slotinfo_equals(slotinfo_t*c1, slotinfo_t*c2); @@ -139,6 +140,8 @@ classinfo_t* slotinfo_gettype(slotinfo_t*); namespace_t access2namespace(U8 access, char*package); +char registry_ispackage(char*package); + // static multinames classinfo_t* registry_getanytype(); classinfo_t* registry_getarrayclass();