Displaying 2 results from an estimated 2 matches for "g_cset_a_2_z".
2007 Jul 18
0
12 commits - configure.ac doc/swfdec-sections.txt libswfdec-gtk/swfdec_playback_alsa.c libswfdec/jpeg libswfdec/Makefile.am libswfdec/swfdec_amf.c libswfdec/swfdec_as_array.c libswfdec/swfdec_as_boolean.h libswfdec/swfdec_as_context.c
...wfdec_interaction.c b/test/trace/swfdec_interaction.c
index 1aabb30..371d786 100644
--- a/test/trace/swfdec_interaction.c
+++ b/test/trace/swfdec_interaction.c
@@ -24,10 +24,10 @@
#include "swfdec_interaction.h"
static const GScannerConfig scanner_config = {
- ",; \t\n",
- G_CSET_a_2_z G_CSET_A_2_Z,
- G_CSET_a_2_z G_CSET_A_2_Z,
- "#\n",
+ (char *) ",; \t\n",
+ (char *) G_CSET_a_2_z G_CSET_A_2_Z,
+ (char *) G_CSET_a_2_z G_CSET_A_2_Z,
+ (char *) "#\n",
FALSE,
FALSE, TRUE, FALSE, TRUE, TRUE, FALSE,
TRUE, FALSE, FALSE, FALSE, FALSE, FALSE,...
2008 Jan 08
0
9 commits - configure.ac test/custom test/Makefile.am test/swfdec_test_initialize.as test/swfdec_test_initialize.h test/swfdec_test_test.c test/trace
...are
- * Foundation, Inc., 51 Franklin Street, Fifth Floor,
- * Boston, MA 02110-1301 USA
- */
-
-#ifdef HAVE_CONFIG_H
-#include "config.h"
-#endif
-
-#include "swfdec_interaction.h"
-
-static const GScannerConfig scanner_config = {
- (char *) ",; \t\n",
- (char *) G_CSET_a_2_z G_CSET_A_2_Z,
- (char *) G_CSET_a_2_z G_CSET_A_2_Z,
- (char *) "#\n",
- FALSE,
- FALSE, TRUE, FALSE, TRUE, TRUE, FALSE,
- TRUE, FALSE, FALSE, FALSE, FALSE, FALSE,
- TRUE, TRUE, TRUE, FALSE, FALSE,
- FALSE, TRUE, FALSE, FALSE,
- 0
-};
-
-void
-swfdec_interaction_free (SwfdecInterac...