search for: g_end_decl

Displaying 20 results from an estimated 126 matches for "g_end_decl".

Did you mean: g_end_decls
2008 Jul 04
2
swfdec and clutter
...ication which uses curl for http connection. But swfdec uses only libsoup, Because of dependency issues i think that it is not a bad idea to add a curl loader and select it at configure time (something like --with-http=<curl/libsoup>) 4- swfdec_regtangle.h does not contain G_BEGIN_DECLS and G_END_DECLS macros. i realized it when included to a c++ code. and solved by G_BEGIN_DECLS #include <swfdec/swfdec.h> G_END_DECLS but its better to solve it in source code thank you and see you at guadec 2008 Uygar GUMUS VESTEK Elektronik Arastirma Gelistirme A.S. Adres : ITU Ayazaga...
2007 Jun 15
0
Branch 'as' - 5 commits - libswfdec/swfdec_as_native_function.c libswfdec/swfdec_edittext.c libswfdec/swfdec_edittext.h libswfdec/swfdec_font.c libswfdec/swfdec_font.h libswfdec/swfdec_image.c libswfdec/swfdec_image.h libswfdec/swfdec_morphshape.h
...nt tag_func_define_font_3 (SwfdecSwfDecoder * s); + guint tag); +int tag_func_define_font (SwfdecSwfDecoder * s, + guint tag); +int tag_func_define_font_2 (SwfdecSwfDecoder * s, + guint tag); +int tag_func_define_font_3 (SwfdecSwfDecoder * s, + guint tag); G_END_DECLS #endif diff --git a/libswfdec/swfdec_image.c b/libswfdec/swfdec_image.c index 5a60681..075f771 100644 --- a/libswfdec/swfdec_image.c +++ b/libswfdec/swfdec_image.c @@ -90,19 +90,23 @@ swfdec_image_init (SwfdecImage * image) } int -swfdec_image_jpegtables (SwfdecSwfDecoder * s) +swfdec_image_j...
2007 Oct 17
0
28 commits - configure.ac debian/changelog debian/control debian/copyright debian/.gitignore debian/libswfdec0.dirs debian/libswfdec0.files debian/libswfdec0.shlibs debian/libswfdec-dev.dirs debian/libswfdec-dev.files debian/rules debian/swf-player.dirs
...+++ b/libswfdec/swfdec_flash_security.h @@ -49,7 +49,8 @@ struct _SwfdecFlashSecurityClass GType swfdec_flash_security_get_type (void); -SwfdecSecurity * swfdec_flash_security_new (void); +SwfdecSecurity * swfdec_flash_security_new (gboolean allow_local, + gboolean allow_remote); G_END_DECLS diff --git a/libswfdec/swfdec_player.c b/libswfdec/swfdec_player.c index 8037927..e4e8eee 100644 --- a/libswfdec/swfdec_player.c +++ b/libswfdec/swfdec_player.c @@ -36,6 +36,7 @@ #include "swfdec_debug.h" #include "swfdec_enums.h" #include "swfdec_event.h" +#includ...
2007 Aug 09
0
Branch 'vivi' - 6 commits - configure.ac vivified/core vivified/dock vivified/Makefile.am vivified/ui
...IVI_TYPE_COMMAND_LINE, ViviCommandLineClass)) + +struct _ViviCommandLine { + ViviDocklet docklet; +}; + +struct _ViviCommandLineClass +{ + ViviDockletClass docklet_class; +}; + +GType vivi_command_line_get_type (void); + +GtkWidget * vivi_command_line_new (ViviApplication * app); + + +G_END_DECLS +#endif diff-tree 3c9914ddfb97b6c3d9a25c1651337e85aa4e9c4c (from d16bed72235542b5d4ce5172e0718072f6d340f0) Author: Benjamin Otte <otte at gnome.org> Date: Thu Aug 9 13:53:26 2007 +0200 add vdock widget This is supposed to be a vertical dock. diff --git a/vivified/dock/Makefi...
2007 Aug 09
0
Branch 'vivi' - 12 commits - libswfdec-gtk/swfdec_gtk_player.c libswfdec-gtk/swfdec_gtk_player.h libswfdec/Makefile.am libswfdec/swfdec_as_array.h libswfdec/swfdec_as_context.c libswfdec/swfdec_as_context.h libswfdec/swfdec_as_debugger.c
...i_application.h @@ -58,6 +58,8 @@ const char * vivi_application_get_filen SwfdecPlayer * vivi_application_get_player (ViviApplication * app); void vivi_application_reset (ViviApplication * app); +void vivi_application_run (ViviApplication * app, + const char * command); G_END_DECLS #endif diff --git a/vivified/core/vivi_ming.c b/vivified/core/vivi_ming.c new file mode 100644 index 0000000..3ef14b1 --- /dev/null +++ b/vivified/core/vivi_ming.c @@ -0,0 +1,98 @@ +/* Vivified + * Copyright (C) 2007 Benjamin Otte <otte at gnome.org> + * + * This library is free software; y...
2007 Mar 07
0
2 commits - libswfdec/swfdec_js_movie.c libswfdec/swfdec_root_movie.h
...cters */ }; struct _SwfdecRootMovieClass @@ -61,5 +62,8 @@ void swfdec_root_movie_load (SwfdecRo void swfdec_root_movie_perform_root_actions (SwfdecRootMovie * root, guint frame); +gpointer swfdec_root_movie_get_export (SwfdecRootMovie * root, + const char * name); + G_END_DECLS #endif
2007 Aug 18
0
8 commits - libswfdec/Makefile.am libswfdec/swfdec_as_strings.c libswfdec/swfdec_load_object_as.c libswfdec/swfdec_load_object_as.h libswfdec/swfdec_load_object.c libswfdec/swfdec_load_object.h libswfdec/swfdec_player.c libswfdec/swfdec_player_internal.h
...isplays */ + SwfdecLoader * loader; /* loader when loading or NULL */ +}; + +struct _SwfdecLoadObjectClass { + SwfdecAsObjectClass object_class; +}; + +GType swfdec_load_object_get_type (void); + +SwfdecAsObject *swfdec_load_object_new (SwfdecAsObject * target, + const char * url); + + +G_END_DECLS +#endif diff --git a/libswfdec/swfdec_load_object_as.c b/libswfdec/swfdec_load_object_as.c new file mode 100644 index 0000000..740c4de --- /dev/null +++ b/libswfdec/swfdec_load_object_as.c @@ -0,0 +1,40 @@ +/* Swfdec + * Copyright (C) 2007 Benjamin Otte <otte at gnome.org> + * + * This libra...
2007 Feb 07
0
2 commits - doc/swfdec-sections.txt libswfdec/swfdec_loader.c libswfdec/swfdec_loader.h player/swfdebug.c
..., - SwfdecBuffer * buffer); -void swfdec_loader_eof (SwfdecLoader * loader); +void swfdec_loader_push (SwfdecLoader * loader, + SwfdecBuffer * buffer); +void swfdec_loader_eof (SwfdecLoader * loader); +char * swfdec_loader_get_filename (SwfdecLoader * loader); G_END_DECLS
2006 Apr 05
1
build error : xapian-core-0.9.4_svn6707 with UTF-8 patch
...ib-2.0/glib/gerror.h:24, from /usr/include/glib-2.0/glib/gunicode.h:25, from accentnormalisingitor.h:22, from /u1/olly/xapian-svn-snapshot/trunk/xapian/xapian-core/queryparser/queryparser.lemony:24: /usr/include/glib-2.0/glib/gtypes.h:393: error: `G_END_DECLS' does not name a type /usr/include/glib-2.0/glib/gquark.h:38: error: `GQuark' does not name a type /usr/include/glib-2.0/glib/gquark.h:39: error: `GQuark' does not name a type /usr/include/glib-2.0/glib/gquark.h:40: error: `GQuark' does not name a type /usr/include/glib-2.0/glib/g...
2007 Jul 13
0
12 commits - AUTHORS doc/Makefile.am doc/swfdec-docs.sgml doc/swfdec-sections.txt libswfdec/Makefile.am libswfdec/swfdec_as_array.c libswfdec/swfdec_as_array.h libswfdec/swfdec_as_context.c libswfdec/swfdec_as_function.c libswfdec/swfdec_as_function.h
...00644 --- a/libswfdec/swfdec_as_array.h +++ b/libswfdec/swfdec_as_array.h @@ -54,9 +54,6 @@ void swfdec_as_array_append (SwfdecAsA guint n, const SwfdecAsValue * values); -void swfdec_as_array_init_context (SwfdecAsContext * context, - guint version); - G_END_DECLS #endif diff --git a/libswfdec/swfdec_as_context.c b/libswfdec/swfdec_as_context.c index 1b444e2..8a5c20d 100644 --- a/libswfdec/swfdec_as_context.c +++ b/libswfdec/swfdec_as_context.c @@ -28,6 +28,7 @@ #include "swfdec_as_boolean.h" #include "swfdec_as_frame.h" #include &qu...
2007 Mar 15
0
11 commits - libswfdec/swfdec_debugger.c libswfdec/swfdec_debugger.h libswfdec/swfdec_event.c libswfdec/swfdec_js_movie.c libswfdec/swfdec_movie.c libswfdec/swfdec_movie.h libswfdec/swfdec_net_stream.c libswfdec/swfdec_player.c
...28181c 100644 --- a/libswfdec/swfdec_debugger.h +++ b/libswfdec/swfdec_debugger.h @@ -96,6 +96,9 @@ void swfdec_debugger_foreach_script (S GFunc func, gpointer data); +const char * swfdec_debugger_run (SwfdecDebugger * debugger, + const char * command); + G_END_DECLS #endif diff --git a/player/swfdec_player_manager.c b/player/swfdec_player_manager.c index 1307c32..0d22ab3 100644 --- a/player/swfdec_player_manager.c +++ b/player/swfdec_player_manager.c @@ -396,20 +396,18 @@ breakpoint_hit_cb (SwfdecDebugger *debug } static void -command_print (SwfdecPlayer...
2007 Nov 01
0
3 commits - libswfdec/Makefile.am libswfdec/swfdec_as_interpret.c libswfdec/swfdec_loader.c libswfdec/swfdec_loader_internal.h libswfdec/swfdec_load_object_as.c libswfdec/swfdec_load_object.c libswfdec/swfdec_net_stream.c libswfdec/swfdec_player.c
...onst char * swfdec_resource_get_export_name (SwfdecResource * root, SwfdecCharacter * character); +void swfdec_resource_load (SwfdecPlayer * player, + const char * target, + const char * url, + SwfdecLoaderRequest request, + SwfdecBuffer * buffer); G_END_DECLS #endif diff --git a/libswfdec/swfdec_resource_request.c b/libswfdec/swfdec_resource_request.c new file mode 100644 index 0000000..32a5ed6 --- /dev/null +++ b/libswfdec/swfdec_resource_request.c @@ -0,0 +1,125 @@ +/* Swfdec + * Copyright (C) 2007 Benjamin Otte <otte at gnome.org> + * + * Thi...
2007 Sep 04
0
5 commits - doc/Makefile.am doc/swfdec-sections.txt libswfdec/swfdec_as_array.c libswfdec/swfdec_as_boolean.c libswfdec/swfdec_asbroadcaster.c libswfdec/swfdec_as_internal.h libswfdec/swfdec_as_native_function.c libswfdec/swfdec_as_native_function.h
...+ guint argc, + SwfdecAsValue * argv, + const char * args, + va_list varargs); +#define SWFDEC_AS_CHECK(type,result,...) G_STMT_START {\ + if (!swfdec_as_native_function_check (cx, object, type, result, argc, argv, __VA_ARGS__)) \ + return; \ +}G_STMT_END + G_END_DECLS #endif diff --git a/libswfdec/swfdec_player_as.c b/libswfdec/swfdec_player_as.c index 2fd543a..08ccc26 100644 --- a/libswfdec/swfdec_player_as.c +++ b/libswfdec/swfdec_player_as.c @@ -26,6 +26,7 @@ #include "swfdec_player_internal.h" #include "swfdec_as_function.h" +#inclu...
2007 Aug 21
0
Branch 'vivi' - 15 commits - configure.ac libswfdec/Makefile.am libswfdec/swfdec_as_context.c libswfdec/swfdec_as_debugger.h libswfdec/swfdec_as_object.c libswfdec/swfdec_movie.c libswfdec/swfdec_script.c libswfdec/swfdec_types.h vivified/core vivified/ui
.../* the application we connect to */ - GtkWidget * view; /* text view for outputting stuff to */ -}; - -struct _ViviCommandLineClass -{ - ViviDockletClass docklet_class; -}; - -GType vivi_command_line_get_type (void); - -GtkWidget * vivi_command_line_new (ViviApplication * app); - - -G_END_DECLS -#endif diff-tree 1bb42f2089e1c0530e34c060b8e90310f682a849 (from ab10b3c5c72a4e04b5f27027f90f58023d0a3594) Author: Benjamin Otte <otte at gnome.org> Date: Tue Aug 21 12:44:15 2007 +0200 add find_widget function to ViviViviDocklet diff --git a/vivified/ui/vivi_player.c b/vivified/ui/v...
2007 Jan 14
0
Changes to 'refs/tags/0.4.1'
...U= =2Uj1 -----END PGP SIGNATURE----- Changes since 0.4.0: Benjamin Otte: back to cvs generate enums, too Change mouse-visible signal to mouse-cursor and support more cursors clarify comment update gitignore files THis is a void function add G_BEGIN_DECLS / G_END_DECLS document swfdec_buffer_queue_peek Fix up SwfdecBits for the big endian versions needed for FLV catch a case with setting the debug level wrong make swfdec_buffer_get_bits return NULL if no more data available add Nellymoser 8kHz codec Invent a SwfdecLoaderTarget...
2007 Mar 09
0
libswfdec/swfdec_root_sprite.c libswfdec/swfdec_root_sprite.h
...GArray ** root_actions; /* n_frames of root actions */ +}; + +struct _SwfdecRootSpriteClass +{ + SwfdecGraphicClass graphic_class; +}; + +GType swfdec_root_sprite_get_type (void); + +int tag_func_export_assets (SwfdecSwfDecoder * s); +int tag_func_do_init_action (SwfdecSwfDecoder * s); + + +G_END_DECLS +#endif
2007 Jan 22
0
Branch 'interpreter' - 3 commits - libswfdec/swfdec_bits.c libswfdec/swfdec_swf_decoder.c test/Makefile.am test/swfedit.c test/swfedit_file.c test/swfedit_file.h test/swfedit_tag.c test/swfedit_tag.h test/swfedit_token.c test/swfedit_token.h
...d to */ + + /* defined objects */ + GList * tags; /* ordered list of all tags in the file */ +}; + +struct _SwfeditFileClass { + SwfeditTokenClass token_class; +}; + +GType swfedit_file_get_type (void); + +SwfeditFile * swfedit_file_new (const char * filename, + GError ** error); + + +G_END_DECLS + +#endif diff --git a/test/swfedit_tag.c b/test/swfedit_tag.c new file mode 100644 index 0000000..9bbebeb --- /dev/null +++ b/test/swfedit_tag.c @@ -0,0 +1,61 @@ +/* Swfedit + * Copyright (C) 2007 Benjamin Otte <otte@gnome.org> + * + * This library is free software; you can redistribute it...
2007 Apr 06
0
3 commits - libswfdec-gtk/swfdec_gtk_loader.c libswfdec/Makefile.am libswfdec/swfdec_codec.c libswfdec/swfdec_codec_ffmpeg.c libswfdec/swfdec_codec_gst.c libswfdec/swfdec_codec.h libswfdec/swfdec_codec_screen.c libswfdec/swfdec_codec_video.c
...ec_video_codec_get_size(codec, codec_data, width, height) (codec)->get_size (codec_data, width, height) -#define swfdec_video_codec_decode(codec, codec_data, buffer) (codec)->decode (codec_data, buffer) -#define swfdec_video_codec_finish(codec, codec_data) (codec)->finish (codec_data) - G_END_DECLS #endif diff --git a/libswfdec/swfdec_codec_ffmpeg.c b/libswfdec/swfdec_codec_ffmpeg.c index 5f2dcaf..08b9c34 100644 --- a/libswfdec/swfdec_codec_ffmpeg.c +++ b/libswfdec/swfdec_codec_ffmpeg.c @@ -24,6 +24,7 @@ #include <avcodec.h> #include "swfdec_codec.h" +#include "swfd...
2007 Sep 13
0
5 commits - libswfdec/Makefile.am libswfdec/swfdec_as_context.c libswfdec/swfdec_as_frame.c libswfdec/swfdec_as_frame_internal.h libswfdec/swfdec_as_interpret.c libswfdec/swfdec_as_scope.c libswfdec/swfdec_as_scope.h libswfdec/swfdec_as_script_function.c
...wfdecAsFrame * frame, + const guint8 * start, + const guint8 * end, + SwfdecAsFrameBlockFunc func, + gpointer data, + GDestroyNotify destroy); +void swfdec_as_frame_pop_block (SwfdecAsFrame * frame); +void swfdec_as_frame_check_block (SwfdecAsFrame * frame); G_END_DECLS diff --git a/libswfdec/swfdec_as_interpret.c b/libswfdec/swfdec_as_interpret.c index 564c35a..70f3c09 100644 --- a/libswfdec/swfdec_as_interpret.c +++ b/libswfdec/swfdec_as_interpret.c @@ -30,7 +30,6 @@ #include "swfdec_as_string.h" #include "swfdec_as_strings.h" #include &q...
2007 Mar 27
0
15 commits - configure.ac doc/Makefile.am doc/swfdec-docs.sgml doc/swfdec-sections.txt doc/swfdec.types libswfdec-gtk/.gitignore libswfdec-gtk/Makefile.am libswfdec-gtk/swfdec-gtk.h libswfdec-gtk/swfdec_gtk_player.c libswfdec-gtk/swfdec_gtk_player.h
..._player_set_audio (SwfdecGtkPlayer * player, + gboolean enabled); +gboolean swfdec_gtk_player_get_audio (SwfdecGtkPlayer * player); +void swfdec_gtk_player_set_speed (SwfdecGtkPlayer * player, + double speed); +double swfdec_gtk_player_get_speed (SwfdecGtkPlayer * player); + + + +G_END_DECLS +#endif diff-tree a7771114e2f618c43b3758797e1bcea6c5ce9dc7 (from 9d9cebe02b434c2554fb6953aa47d2a1e8e7e7f7) Author: Benjamin Otte <otte@gnome.org> Date: Mon Mar 26 18:42:03 2007 +0200 add swfdec_iterate_source_set_speed diff --git a/libswfdec-gtk/swfdec_source.c b/libswfdec-gtk/swfdec...