コード例 #1
0
ファイル: filters_pkg.cpp プロジェクト: BrandRegard/gnash
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);
}
コード例 #2
0
ファイル: BitmapFilter_as.cpp プロジェクト: diocles/gnash
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);
}
コード例 #3
0
ファイル: Point_as.cpp プロジェクト: jlopez/gnash
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);
}
コード例 #4
0
ファイル: ExternalInterface_as.cpp プロジェクト: jlopez/gnash
void
externalinterface_class_init(as_object& where, const ObjectURI& uri)
{
    where.init_destructive_property(uri, externalInterfaceConstructor, 0);
}