Displaying 5 results from an estimated 5 matches for "__variable".
Did you mean:
t_variable
2007 Mar 28
0
Branch 'as' - 3 commits - libswfdec/Makefile.am libswfdec/swfdec_as_context.c libswfdec/swfdec_as_context.h libswfdec/swfdec_as_frame.c libswfdec/swfdec_as_frame.h libswfdec/swfdec_as_object.c libswfdec/swfdec_as_object.h libswfdec/swfdec_as_types.c
...get_variable (Swf
SwfdecAsValue * value);
void swfdec_as_object_delete_variable(SwfdecAsObject * object,
const SwfdecAsValue * variable);
+/* shortcuts, you probably don't want to bind them */
+#define swfdec_as_object_set(object, name, value) G_STMT_START { \
+ SwfdecAsValue __variable; \
+ SWFDEC_AS_VALUE_SET_STRING (&__variable, (name)); \
+ swfdec_as_object_set_variable ((object), &__variable, (value)); \
+}G_STMT_END
+#define swfdec_as_object_get(object, name, value) G_STMT_START { \
+ SwfdecAsValue __variable; \
+ SWFDEC_AS_VALUE_SET_STRING (&__variable, (nam...
2007 Apr 12
0
Branch 'as' - 14 commits - libswfdec-gtk/swfdec_playback_alsa.c libswfdec/swfdec_as_context.c libswfdec/swfdec_as_context.h libswfdec/swfdec_as_frame.c libswfdec/swfdec_as_frame.h libswfdec/swfdec_as_function.c libswfdec/swfdec_as_function.h
...const SwfdecAsValue * variable,
+ SwfdecAsVariableFlag flags);
/* shortcuts, you probably don't want to bind them */
#define swfdec_as_object_set(object, name, value) G_STMT_START { \
@@ -122,6 +130,21 @@ SwfdecAsObject *swfdec_as_object_find_va
SWFDEC_AS_VALUE_SET_STRING (&__variable, (name)); \
swfdec_as_object_get_variable ((object), &__variable, (value)); \
}G_STMT_END
+#define swfdec_as_object_set_flags(object, name, flags) G_STMT_START { \
+ SwfdecAsValue __variable; \
+ SWFDEC_AS_VALUE_SET_STRING (&__variable, (name)); \
+ swfdec_as_object_set_variable_flag...
2015 Jun 03
1
default features
...is there some built-in way to know if macro "feature1-ClientA" is defined? Something like
ExecIfMacro(feature1-ClientA)?macro(feature1-ClientA):Goto(...).
For the moment, we are using an external command like
"asterisk -rx 'dialplan show'| grep ..."
to set a "__variable" and we use it later to decide to execute or not the
"suspicious" macro.
Cheers
Ethy
2007 Apr 05
0
Branch 'as' - 9 commits - configure.ac libswfdec/swfdec_as_context.c libswfdec/swfdec_as_frame.c libswfdec/swfdec_as_frame.h libswfdec/swfdec_as_function.h libswfdec/swfdec_as_interpret.c libswfdec/swfdec_as_object.c libswfdec/swfdec_as_object.h
...const SwfdecAsValue * variable);
+SwfdecAsObject *swfdec_as_object_find_variable (SwfdecAsObject * object,
+ const SwfdecAsValue * variable);
+
/* shortcuts, you probably don't want to bind them */
#define swfdec_as_object_set(object, name, value) G_STMT_START { \
SwfdecAsValue __variable; \
diff-tree 04caa48b48e55a62787a5b5bd7f2ee77d330ebbf (from 737748443383004fd830136283af95dc9f8c2a20)
Author: Benjamin Otte <otte@gnome.org>
Date: Thu Apr 5 15:27:06 2007 +0200
add swfdec_as_stack_pop_n
diff --git a/libswfdec/swfdec_as_stack.h b/libswfdec/swfdec_as_stack.h
index a5b14...
2007 Apr 04
0
Branch 'as' - 17 commits - configure.ac doc/Makefile.am doc/swfdec-docs.sgml doc/swfdec-sections.txt doc/swfdec.types libswfdec-gtk/Makefile.am libswfdec-gtk/swfdec-gtk.h libswfdec-gtk/swfdec_gtk_loader.c libswfdec-gtk/swfdec_gtk_loader.h
..., SWFDEC_TYPE_AS_OBJECT, SwfdecAsObjectClass))
+#define SWFDEC_AS_OBJECT_HAS_CONTEXT(obj) (SWFDEC_AS_OBJECT (obj)->properties != NULL)
+
struct _SwfdecAsObject {
GObject object;
@@ -89,6 +92,14 @@ void swfdec_as_object_delete_variable(S
swfdec_as_object_get_variable ((object), &__variable, (value)); \
}G_STMT_END
+void swfdec_as_object_run (SwfdecAsObject * object,
+ SwfdecScript * script);
+gboolean swfdec_as_object_has_function (SwfdecAsObject * object,
+ const char * name);
+void swfdec_as_object_call (SwfdecAsObject * object,
+ const...