Displaying 2 results from an estimated 2 matches for "5dad235".
2007 Jan 16
0
9 commits - libswfdec/js libswfdec/Makefile.am libswfdec/swfdec_audio_stream.c libswfdec/swfdec_audio_stream.h libswfdec/swfdec_cache.c libswfdec/swfdec_cached.c libswfdec/swfdec_cached.h libswfdec/swfdec_edittext_movie.c libswfdec/swfdec_image.c
...stanceOf(JSContext *cx, JSObject *obj, JSClass *clasp, jsval *argv);
+JS_InstanceOf(JSContext *cx, JSObject *obj, const JSClass *clasp, jsval *argv);
extern JS_PUBLIC_API(void *)
JS_GetPrivate(JSContext *cx, JSObject *obj);
diff --git a/libswfdec/js/jsfun.h b/libswfdec/js/jsfun.h
index 1a36d6b..5dad235 100644
--- a/libswfdec/js/jsfun.h
+++ b/libswfdec/js/jsfun.h
@@ -58,7 +58,7 @@ struct JSFunction {
uint8 flags; /* bound method and other flags, see jsapi.h */
uint8 spare; /* reserved for future use */
JSAtom *atom; /* name for diagnostics...
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
...ug.h \
swfdec_debugger.h \
swfdec_decoder.h \
@@ -134,6 +133,7 @@ noinst_HEADERS = \
swfdec_rect.h \
swfdec_ringbuffer.h \
swfdec_root_movie.h \
+ swfdec_script.h \
swfdec_scriptable.h \
swfdec_shape.h \
swfdec_sound.h \
diff --git a/libswfdec/js/jsfun.h b/libswfdec/js/jsfun.h
index 5dad235..ad4249d 100644
--- a/libswfdec/js/jsfun.h
+++ b/libswfdec/js/jsfun.h
@@ -52,6 +52,7 @@ struct JSFunction {
JSObject *object; /* back-pointer to GC'ed object header */
JSNative native; /* native method pointer or null */
JSScript *script; /* interpr...