search for: swfdecro

Displaying 2 results from an estimated 2 matches for "swfdecro".

Did you mean: swfdecmo
2007 Mar 07
0
2 commits - libswfdec/swfdec_js_movie.c libswfdec/swfdec_root_movie.h
...tte@gnome.org> Date: Wed Mar 7 21:41:03 2007 +0100 whoops, forgot to update this file diff --git a/libswfdec/swfdec_root_movie.h b/libswfdec/swfdec_root_movie.h index f1ae02b..f5a57d6 100644 --- a/libswfdec/swfdec_root_movie.h +++ b/libswfdec/swfdec_root_movie.h @@ -45,6 +45,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...
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
...6 +129,7 @@ swfdec_root_movie_dispose (GObject *obje g_object_unref (root->decoder); root->decoder = NULL; } + g_hash_table_destroy (root->exports); G_OBJECT_CLASS (swfdec_root_movie_parent_class)->dispose (object); } @@ -168,8 +169,9 @@ swfdec_root_movie_class_init (SwfdecRoot } static void -swfdec_root_movie_init (SwfdecRootMovie *decoder) +swfdec_root_movie_init (SwfdecRootMovie *root) { + root->exports = g_hash_table_new (g_str_hash, g_str_equal); } void @@ -240,9 +242,22 @@ swfdec_root_movie_perform_root_actions ( swfdec_script_execute (action->da...