MouchardInterfaceDLL.h 398 B

1234567891011121314151617181920212223242526272829
  1. #ifndef _MouchardInterfaceDLL_h_
  2. #define _MouchardInterfaceDLL_h_
  3. #ifdef WIN32
  4. #ifdef MATH_DLL_EXPORTS
  5. #define IMPORTEXPORT __declspec(dllexport)
  6. #else
  7. #define IMPORTEXPORT __declspec(dllimport)
  8. #endif
  9. #else
  10. #define IMPORTEXPORT
  11. #endif
  12. extern "C"
  13. {
  14. IMPORTEXPORT unsigned long dllGetMouchard();
  15. IMPORTEXPORT const char* dllGetExpirationDate();
  16. }
  17. #endif