Changeset 99 for trunk/src/tools
- Timestamp:
- Jul 21, 2006, 9:24:43 PM (19 years ago)
- Location:
- trunk/src/tools
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/tools/qcom_p.h
r2 r99 305 305 #endif // Q_CREATE_INSTANCE 306 306 307 # if def Q_WS_WIN307 # if defined(Q_WS_WIN) 308 308 # ifdef Q_CC_BOR 309 309 # define Q_EXPORT_COMPONENT() \ … … 322 322 Q_EXTERN_C __declspec(dllexport) QUnknownInterface* ucm_instantiate() 323 323 # endif 324 # elif defined(Q_OS_OS2) 325 # define Q_EXPORT_COMPONENT() \ 326 Q_UCM_VERIFICATION_DATA \ 327 Q_EXTERN_C \ 328 const char * _System qt_ucm_query_verification_data() \ 329 { return qt_ucm_verification_data; } \ 330 Q_EXTERN_C QUnknownInterface * _System ucm_instantiate() 324 331 # else 325 332 # define Q_EXPORT_COMPONENT() \ -
trunk/src/tools/qcomlibrary.cpp
r2 r99 437 437 } 438 438 439 # if def Q_CC_BOR439 # if defined(Q_CC_BOR) 440 440 typedef const char * __stdcall (*UCMQueryVerificationDataProc)(); 441 # elif defined(Q_OS_OS2) 442 typedef const char * _System (*UCMQueryVerificationDataProc)(); 441 443 # else 442 444 typedef const char * (*UCMQueryVerificationDataProc)(); … … 490 492 #ifdef Q_CC_BOR 491 493 typedef QUnknownInterface* __stdcall (*UCMInstanceProc)(); 494 #elif defined(Q_OS_OS2) 495 typedef QUnknownInterface* _System (*UCMInstanceProc)(); 492 496 #else 493 497 typedef QUnknownInterface* (*UCMInstanceProc)();
Note:
See TracChangeset
for help on using the changeset viewer.