Changeset 15225 in webkit for trunk/JavaScriptCore/API/JSObjectRef.h
- Timestamp:
- Jul 7, 2006, 7:25:55 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/API/JSObjectRef.h
r15224 r15225 58 58 @typedef JSInitializeCallback 59 59 @abstract The callback invoked when an object is first created. 60 @param context The execution context to use. 60 61 @param object The JSObject being created. 61 62 @discussion If you named your function Initialize, you would declare it like this: 62 63 63 void Initialize(JSObjectRef object); 64 */ 65 66 // FIXME: Needs to take a context argument, but can't because no context exists when we're creating the global object 64 void Initialize(JSContextRef context, JSObjectRef object); 65 */ 67 66 typedef void 68 (*JSInitializeCallback) (JS ObjectRef object);67 (*JSInitializeCallback) (JSContextRef context, JSObjectRef object); 69 68 70 69 /*! … … 493 492 @function 494 493 @abstract Gets a property enumerator's next property. 495 @param context The execution context to use.496 494 @param enumerator The JSPropertyEnumerator whose next property you want to get. 497 495 @result A JSStringBuffer containing the property's name, or NULL if all properties have been enumerated. 498 496 */ 499 JSStringBufferRef JSPropertyEnumeratorGetNext(JS ContextRef context, JSPropertyEnumeratorRef enumerator);497 JSStringBufferRef JSPropertyEnumeratorGetNext(JSPropertyEnumeratorRef enumerator); 500 498 501 499 /*!
Note:
See TracChangeset
for help on using the changeset viewer.