search for: new_actions

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

2007 Feb 14
0
7 commits - libswfdec/swfdec_image.c libswfdec/swfdec_script.c libswfdec/swfdec_script.h test/Makefile.am test/swfdec_out.c test/swfdec_out.h test/swfedit.c test/swfedit_list.c test/swfedit_tag.c test/swfedit_token.c test/swfedit_token.h test/swfscript.c
...FEDIT_TOKEN_OBJECT) { + if (!swfedit_token_foreach (entry->value, func, data)) + return FALSE; + } + } + return TRUE; +} + +typedef struct { + guint offset; /* offset in bytes from start of script */ + guint new_offset; /* new offset in bytes from start of script */ + guint new_actions; /* number of actions in new script */ +} Action; + +typedef struct { + SwfdecScript * script; /* the original script */ + SwfdecOut * out; /* output for new script or NULL when buffer is set */ + SwfdecBuffer * buffer; /* buffer containing new script or NULL while constructing */ + GAr...
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
...FEDIT_TOKEN_OBJECT) { - if (!swfedit_token_foreach (entry->value, func, data)) - return FALSE; - } - } - return TRUE; -} - -typedef struct { - guint offset; /* offset in bytes from start of script */ - guint new_offset; /* new offset in bytes from start of script */ - guint new_actions; /* number of actions in new script */ -} Action; - -typedef struct { - SwfdecScript * script; /* the original script */ - SwfdecOut * out; /* output for new script or NULL when buffer is set */ - SwfdecBuffer * buffer; /* buffer containing new script or NULL while constructing */ - GAr...