void flash_filters_package_init(as_object& where, const ObjectURI& uri) { // TODO: this may not be correct, but it should be enumerable. const int flags = 0; where.init_destructive_property(uri, get_flash_filters_package, flags); }
void bitmapfilter_class_init(as_object& where, const ObjectURI& uri) { // TODO: this may not be correct, but it should be enumerable. const int flags = 0; where.init_destructive_property(uri, getBitmapFilterConstructor, flags); }
void point_class_init(as_object& where, const ObjectURI& uri) { // TODO: this may not be correct, but it should be enumerable. const int flags = 0; where.init_destructive_property(uri, get_flash_geom_point_constructor, flags); }
void externalinterface_class_init(as_object& where, const ObjectURI& uri) { where.init_destructive_property(uri, externalInterfaceConstructor, 0); }