Changeset 15328 in webkit for trunk/JavaScriptCore/API/JSObjectRef.h
- Timestamp:
- Jul 10, 2006, 10:37:00 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/API/JSObjectRef.h
r15317 r15328 28 28 #define JSObjectRef_h 29 29 30 #include "JSBase.h"31 #include "JSValueRef.h"30 #include <JavaScriptCore/JSBase.h> 31 #include <JavaScriptCore/JSValueRef.h> 32 32 33 33 #ifdef __cplusplus … … 269 269 @struct JSStaticValue 270 270 @abstract This structure describes a static value property. 271 @field name A UTF8 buffercontaining the property's name.271 @field name A null-terminated UTF8 string containing the property's name. 272 272 @field getProperty A JSGetPropertyCallback to invoke when getting the property's value. 273 273 @field setProperty A JSSetPropertyCallback to invoke when setting the property's value. … … 284 284 @struct JSStaticFunction 285 285 @abstract This structure describes a static function property. 286 @field name A UTF8 buffercontaining the property's name.286 @field name A null-terminated UTF8 string containing the property's name. 287 287 @field callAsFunction A JSCallAsFunctionCallback to invoke when the property is called as a function. 288 288 @field attributes A logically ORed set of JSPropertyAttributes to give to the property.
Note:
See TracChangeset
for help on using the changeset viewer.