Common.h 338 B

12345678910111213141516
  1. #ifndef __GENIUS_COMMON__
  2. #define __GENIUS_COMMON__
  3. #define VCMI_DLL
  4. #ifdef __GNUC__
  5. #define strcpy_s(a, b, c) strncpy(a, c, b)
  6. #endif
  7. #pragma warning (disable: 4100 4244)
  8. #include "../../AI_Base.h"
  9. #pragma warning (default: 4100 4244)
  10. void MsgBox(const char *msg, bool messageBox = false);
  11. #endif/*__GENIUS_COMMON__*/