| 1234567891011121314151617181920212223242526272829 |
- #ifndef _MouchardInterfaceDLL_h_
- #define _MouchardInterfaceDLL_h_
- #ifdef WIN32
- #ifdef MATH_DLL_EXPORTS
- #define IMPORTEXPORT __declspec(dllexport)
- #else
- #define IMPORTEXPORT __declspec(dllimport)
- #endif
- #else
- #define IMPORTEXPORT
- #endif
- extern "C"
- {
- IMPORTEXPORT unsigned long dllGetMouchard();
- IMPORTEXPORT char* dllGetExpirationDate();
- }
- #endif
|