search for: _swfdecrootmovieclass

Displaying 3 results from an estimated 3 matches for "_swfdecrootmovieclass".

2007 Mar 07
0
2 commits - libswfdec/swfdec_js_movie.c libswfdec/swfdec_root_movie.h
...,7 @@ struct _SwfdecRootMovie guint unnamed_count; /* variable used for naming unnamed movies */ guint root_actions_performed; /* root actions been performed in all frames < this*/ + GHashTable * exports; /* string->SwfdecCharacter mapping of exported characters */ }; struct _SwfdecRootMovieClass @@ -61,5 +62,8 @@ void swfdec_root_movie_load (SwfdecRo void swfdec_root_movie_perform_root_actions (SwfdecRootMovie * root, guint frame); +gpointer swfdec_root_movie_get_export (SwfdecRootMovie * root, + const char * name); + G_END_DECLS #endif
2007 Mar 05
0
11 commits - configure.ac libswfdec/swfdec_js_movie.c libswfdec/swfdec_root_movie.c libswfdec/swfdec_root_movie.h libswfdec/swfdec_script.c libswfdec/swfdec_sprite.c libswfdec/swfdec_sprite.h libswfdec/swfdec_sprite_movie.c libswfdec/swfdec_swf_decoder.c
...roviding data for the decoder */ SwfdecDecoder * decoder; /* decoder that decoded all the stuff used by us */ guint unnamed_count; /* variable used for naming unnamed movies */ + + GHashTable * character_data; /* custom data per character to be set by the movie using them */ }; struct _SwfdecRootMovieClass @@ -50,12 +52,18 @@ struct _SwfdecRootMovieClass SwfdecSpriteMovieClass sprite_movie_class; }; -GType swfdec_root_movie_get_type (void); +GType swfdec_root_movie_get_type (void); -void swfdec_root_movie_load (SwfdecRootMovie * movie, - const char * url, - const char * t...
2007 Mar 07
0
13 commits - libswfdec/Makefile.am libswfdec/swfdec_js_global.c libswfdec/swfdec_js_movie.c libswfdec/swfdec_root_movie.c libswfdec/swfdec_root_movie.h libswfdec/swfdec_script.c libswfdec/swfdec_sprite.h libswfdec/swfdec_sprite_movie.c
...uct _SwfdecRootMovie guint unnamed_count; /* variable used for naming unnamed movies */ guint root_actions_performed; /* root actions been performed in all frames < this*/ - GHashTable * character_data; /* custom data per character to be set by the movie using them */ }; struct _SwfdecRootMovieClass @@ -59,13 +58,6 @@ void swfdec_root_movie_load (SwfdecRo const char * url, const char * target); -void swfdec_root_movie_set_character_data (SwfdecRootMovie * movie, - SwfdecCharacter * character, - gpointer data, - GDestroyNotify destroy); -gpointer...