Changeset 45011 in webkit


Ignore:
Timestamp:
Jun 23, 2009 4:06:36 PM (15 years ago)
Author:
treat@webkit.org
Message:

2009-06-23 Yong Li <yong.li@torchmobile.com>

Reviewed by George Staikos.

https://bugs.webkit.org/show_bug.cgi?id=26654
Add the proper export define for the JavaScriptCore API when building for WINCE.

Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/API/JSBase.h

    r42980 r45011  
    7070#elif defined(__GNUC__)
    7171    #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
    7280#elif defined(WIN32) || defined(_WIN32)
    7381    /*
  • trunk/JavaScriptCore/ChangeLog

    r44993 r45011  
     12009-06-23  Yong Li  <yong.li@torchmobile.com>
     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
    1102009-06-23  Joe Mason  <joe.mason@torchmobile.com>
    211
Note: See TracChangeset for help on using the changeset viewer.