search for: swfeditlist

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

Did you mean: swfedit_list
2007 Feb 13
0
9 commits - libswfdec/js libswfdec/swfdec_bits.c libswfdec/swfdec_bits.h libswfdec/swfdec_codec_screen.c libswfdec/swfdec_image.c libswfdec/swfdec_script.c test/Makefile.am test/swfdec_out.c test/swfdec_out.h test/swfedit.c test/swfedit_file.c
...GError ** error); +guint swfedit_file_get_version (SwfeditFile * file); G_END_DECLS diff --git a/test/swfedit_list.c b/test/swfedit_list.c index 35ab0a3..289d7de 100644 --- a/test/swfedit_list.c +++ b/test/swfedit_list.c @@ -99,7 +99,7 @@ swfedit_list_new (const SwfeditTagDefini } SwfeditList * -swfedit_list_new_read (SwfdecBits *bits, const SwfeditTagDefinition *def) +swfedit_list_new_read (SwfeditToken *parent, SwfdecBits *bits, const SwfeditTagDefinition *def) { SwfeditList *list; SwfeditTokenEntry *entry; @@ -109,6 +109,7 @@ swfedit_list_new_read (SwfdecBits *bits, g_retur...
2008 Jan 07
0
12 commits - configure.ac doc/swfdec.types Makefile.am test/crashfinder.c test/dump.c test/Makefile.am test/swfdec-extract.c test/swfdec_out.c test/swfdec_out.h test/swfedit.c test/swfedit_file.c test/swfedit_file.h test/swfedit_list.c test/swfedit_list.h
...General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, - * Boston, MA 02110-1301 USA - */ - -#ifdef HAVE_CONFIG_H -#include "config.h" -#endif - -#include "swfedit_list.h" - -G_DEFINE_TYPE (SwfeditList, swfedit_list, SWFEDIT_TYPE_TOKEN) - -static void -swfedit_list_dispose (GObject *object) -{ - //SwfeditList *list = SWFEDIT_LIST (object); - - G_OBJECT_CLASS (swfedit_list_parent_class)->dispose (object); -} - -static void -swfedit_list_changed (SwfeditToken *token, guint i) -{ - guint j; -...