Changeset 28097 in webkit for trunk/JavaScriptCore/API/JSContextRef.h
- Timestamp:
- Nov 27, 2007, 8:31:51 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/API/JSContextRef.h
r15481 r28097 46 46 @result A JSGlobalContext with a global object of class globalObjectClass. 47 47 */ 48 JS GlobalContextRef JSGlobalContextCreate(JSClassRef globalObjectClass);48 JS_EXPORT JSGlobalContextRef JSGlobalContextCreate(JSClassRef globalObjectClass); 49 49 50 50 /*! … … 54 54 @result A JSGlobalContext that is the same as ctx. 55 55 */ 56 JS GlobalContextRef JSGlobalContextRetain(JSGlobalContextRef ctx);56 JS_EXPORT JSGlobalContextRef JSGlobalContextRetain(JSGlobalContextRef ctx); 57 57 58 58 /*! … … 61 61 @param ctx The JSGlobalContext to release. 62 62 */ 63 void JSGlobalContextRelease(JSGlobalContextRef ctx);63 JS_EXPORT void JSGlobalContextRelease(JSGlobalContextRef ctx); 64 64 65 65 /*! … … 69 69 @result ctx's global object. 70 70 */ 71 JS ObjectRef JSContextGetGlobalObject(JSContextRef ctx);71 JS_EXPORT JSObjectRef JSContextGetGlobalObject(JSContextRef ctx); 72 72 73 73 #ifdef __cplusplus
Note:
See TracChangeset
for help on using the changeset viewer.