search for: swfdec_movie_foreach_variable

Displaying 1 result from an estimated 1 matches for "swfdec_movie_foreach_variable".

2008 Jan 02
0
3 commits - libswfdec/swfdec_movie.c test/trace
...f06a289..400ca2e 100644 --- a/libswfdec/swfdec_movie.c +++ b/libswfdec/swfdec_movie.c @@ -1227,6 +1227,27 @@ swfdec_movie_set_variable (SwfdecAsObject *object, const char *variable, SWFDEC_AS_OBJECT_CLASS (swfdec_movie_parent_class)->set (object, variable, val, flags); } +static gboolean +swfdec_movie_foreach_variable (SwfdecAsObject *object, SwfdecAsVariableForeach func, gpointer data) +{ + SwfdecMovie *movie = SWFDEC_MOVIE (object); + SwfdecAsValue val; + GList *walk; + gboolean ret; + + ret = SWFDEC_AS_OBJECT_CLASS (swfdec_movie_parent_class)->foreach (object, func, data); + + for (walk = movie->l...