Displaying 2 results from an estimated 2 matches for "f5a57d6".
Did you mean:
f5a2dd6
2007 Mar 07
0
2 commits - libswfdec/swfdec_js_movie.c libswfdec/swfdec_root_movie.h
...a8dcb5663fc692c8b2e222e3555609759f7ff (from 079beedc71d1fc60cf29451ba622c1d576b6a019)
Author: Benjamin Otte <otte@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*/
+ GHashTabl...
2007 Mar 09
0
17 commits - libswfdec/js libswfdec/swfdec_js.c libswfdec/swfdec_js_global.c libswfdec/swfdec_js.h libswfdec/swfdec_js_movie.c libswfdec/swfdec_movie.c libswfdec/swfdec_player.c libswfdec/swfdec_player_internal.h libswfdec/swfdec_root_movie.c
...return_val_if_fail (SWFDEC_IS_CHARACTER (character), NULL);
+
+ if (!g_hash_table_find (root->exports, find_value, &ret))
+ return NULL;
+
+ g_print ("found %s\n", (char *) ret);
+ return ret;
+}
diff --git a/libswfdec/swfdec_root_movie.h b/libswfdec/swfdec_root_movie.h
index f5a57d6..67c785e 100644
--- a/libswfdec/swfdec_root_movie.h
+++ b/libswfdec/swfdec_root_movie.h
@@ -64,6 +64,8 @@ void swfdec_root_movie_perform_root_act
gpointer swfdec_root_movie_get_export (SwfdecRootMovie * root,
const char * name);
+const char * swfdec_root_movie_get_export_name (S...