Changeset 45011 in webkit for trunk/JavaScriptCore
- Timestamp:
- Jun 23, 2009, 4:06:36 PM (16 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/API/JSBase.h
r42980 r45011 70 70 #elif defined(__GNUC__) 71 71 #define JS_EXPORT __attribute__((visibility("default"))) 72 #elif defined(_WIN32_WCE) 73 #if defined(JS_BUILDING_JS) 74 #define JS_EXPORT __declspec(dllexport) 75 #elif defined(JS_IMPORT_JS) 76 #define JS_EXPORT __declspec(dllimport) 77 #else 78 #define JS_EXPORT 79 #endif 72 80 #elif defined(WIN32) || defined(_WIN32) 73 81 /* -
trunk/JavaScriptCore/ChangeLog
r44993 r45011 1 2009-06-23 Yong Li <[email protected]> 2 3 Reviewed by George Staikos. 4 5 https://bugs.webkit.org/show_bug.cgi?id=26654 6 Add the proper export define for the JavaScriptCore API when building for WINCE. 7 8 * API/JSBase.h: 9 1 10 2009-06-23 Joe Mason <[email protected]> 2 11
Note:
See TracChangeset
for help on using the changeset viewer.