pcShared.h 256 B

12345678910111213141516
  1. #ifndef pcShared_h
  2. #define pcShared_h
  3. #ifdef _WIN32
  4. # ifdef pcShared_EXPORTS
  5. # define PC_EXPORT __declspec(dllexport)
  6. # else
  7. # define PC_EXPORT __declspec(dllimport)
  8. # endif
  9. #else
  10. # define PC_EXPORT
  11. #endif
  12. PC_EXPORT const char* pcShared(void);
  13. #endif