search for: swfedit_parse_hex

Displaying 5 results from an estimated 5 matches for "swfedit_parse_hex".

2007 Jan 24
0
Branch 'interpreter' - 8 commits - libswfdec/swfdec_bits.c libswfdec/swfdec_bits.h libswfdec/swfdec_js.c libswfdec/swfdec_js.h libswfdec/swfdec_script.c test/swfdec_out.c test/swfdec_out.h test/swfedit_tag.c test/swfedit_token.c test/swfedit_token.h
...st/swfedit_token.c @@ -22,42 +22,57 @@ #endif #include <stdlib.h> +#include <string.h> #include <gtk/gtk.h> #include <libswfdec/swfdec_buffer.h> +#include <libswfdec/swfdec_color.h> #include "swfedit_token.h" /*** CONVERTERS ***/ static gboolean +swfedit_parse_hex (const char *s, guint *result) +{ + guint byte; + + if (s[0] >= '0' && s[0] <= '9') + byte = s[0] - '0'; + else if (s[0] >= 'a' && s[0] <= 'f') + byte = s[0] + 10 - 'a'; + else if (s[0] >= 'A' &&amp...
2007 Feb 06
0
Branch 'interpreter' - 8 commits - libswfdec/swfdec_bits.c libswfdec/swfdec_color.c libswfdec/swfdec_color.h libswfdec/swfdec_edittext.c libswfdec/swfdec_image.c libswfdec/swfdec_image.h libswfdec/swfdec_pattern.c libswfdec/swfdec_sprite.c test/dump.c
...lude "config.h" +#endif + +#include <stdlib.h> +#include <string.h> +#include <gtk/gtk.h> +#include <libswfdec/swfdec_buffer.h> +#include <libswfdec/swfdec_color.h> +#include "swfedit_token.h" + +/*** CONVERTERS ***/ + +static gboolean +swfedit_parse_hex (const char *s, guint *result) +{ + guint byte; + + if (s[0] >= '0' && s[0] <= '9') + byte = s[0] - '0'; + else if (s[0] >= 'a' && s[0] <= 'f') + byte = s[0] + 10 - 'a'; + else if (s[0] >= 'A' &...
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
...clude <stdlib.h> -#include <string.h> -#include <gtk/gtk.h> -#include <libswfdec/swfdec_buffer.h> -#include <libswfdec/swfdec_color.h> -#include <libswfdec/swfdec_script_internal.h> -#include "swfedit_token.h" - -/*** CONVERTERS ***/ - -static gboolean -swfedit_parse_hex (const char *s, guint *result) -{ - guint byte; - - if (s[0] >= '0' && s[0] <= '9') - byte = s[0] - '0'; - else if (s[0] >= 'a' && s[0] <= 'f') - byte = s[0] + 10 - 'a'; - else if (s[0] >= 'A' &&amp...
2007 Feb 06
0
109 commits - configure.ac libswfdec/js libswfdec/Makefile.am libswfdec/swfdec_bits.c libswfdec/swfdec_bits.h libswfdec/swfdec_buffer.c libswfdec/swfdec_button_movie.c libswfdec/swfdec_codec_screen.c libswfdec/swfdec_color.c libswfdec/swfdec_color.h
...lude "config.h" +#endif + +#include <stdlib.h> +#include <string.h> +#include <gtk/gtk.h> +#include <libswfdec/swfdec_buffer.h> +#include <libswfdec/swfdec_color.h> +#include "swfedit_token.h" + +/*** CONVERTERS ***/ + +static gboolean +swfedit_parse_hex (const char *s, guint *result) +{ + guint byte; + + if (s[0] >= '0' && s[0] <= '9') + byte = s[0] - '0'; + else if (s[0] >= 'a' && s[0] <= 'f') + byte = s[0] + 10 - 'a'; + else if (s[0] >= 'A' &...
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
...wfedit_token.c +++ b/test/swfedit_token.c @@ -26,6 +26,7 @@ #include <gtk/gtk.h> #include <libswfdec/swfdec_buffer.h> #include <libswfdec/swfdec_color.h> +#include <libswfdec/swfdec_script.h> #include "swfedit_token.h" /*** CONVERTERS ***/ @@ -57,6 +58,12 @@ swfedit_parse_hex (const char *s, guint return TRUE; } +static gpointer +swfedit_binary_new (void) +{ + return swfdec_buffer_new (); +} + static gboolean swfedit_binary_from_string (const char *s, gpointer* result) { @@ -101,6 +108,24 @@ swfedit_binary_to_string (gconstpointer } static gboolean +swfe...