Displaying 2 results from an estimated 2 matches for "04deb10".
Did you mean:
04bdeb11
2007 Jul 26
0
5 commits - doc/Makefile.am doc/swfdec-sections.txt libswfdec/Makefile.am libswfdec/swfdec_as_object.c libswfdec/swfdec_as_object.h libswfdec/swfdec_initialize.as libswfdec/swfdec_initialize.h libswfdec/swfdec_player_as.c
...FDEC_AS_VARIABLE_PERMANENT;
- if (set == NULL)
- var->flags |= SWFDEC_AS_VARIABLE_READONLY;
-
+ swfdec_as_object_add_variable (object, name, get, set);
SWFDEC_AS_VALUE_SET_BOOLEAN (retval, TRUE);
}
diff --git a/libswfdec/swfdec_as_object.h b/libswfdec/swfdec_as_object.h
index bb2efeb..04deb10 100644
--- a/libswfdec/swfdec_as_object.h
+++ b/libswfdec/swfdec_as_object.h
@@ -113,6 +113,10 @@ void swfdec_as_object_add (SwfdecAsObj
void swfdec_as_object_set_variable (SwfdecAsObject * object,
const char * variable,
const SwfdecAsValue * value);
+void swfdec_as_object_add...
2007 Aug 02
0
15 commits - configure.ac doc/swfdec-sections.txt libswfdec-gtk/Makefile.am libswfdec-gtk/swfdec_gtk_loader.c libswfdec/Makefile.am libswfdec/swfdec_as_object.c libswfdec/swfdec_as_object.h libswfdec/swfdec_file_loader.c libswfdec/swfdec_file_loader.h
...f it has not yet been
- * added. Read-only.
*
* Every object value inside the Swfdec script engine must be a SwfdecAsObject.
* If you want to add custom objects to your script engine, you need to create a
diff --git a/libswfdec/swfdec_as_object.h b/libswfdec/swfdec_as_object.h
index 04deb10..f82cd9c 100644
--- a/libswfdec/swfdec_as_object.h
+++ b/libswfdec/swfdec_as_object.h
@@ -46,9 +46,8 @@ typedef gboolean (* SwfdecAsVariableFore
#define SWFDEC_AS_OBJECT_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), SWFDEC_TYPE_AS_OBJECT, SwfdecAsObjectClass))
struct _SwfdecAsObjec...