resource.hpp 208 B

1234567891011121314
  1. #ifndef _RAR_RESOURCE_
  2. #define _RAR_RESOURCE_
  3. #ifdef RARDLL
  4. #define St(x) ( "")
  5. #define StW(x) (L"")
  6. #else
  7. const char *St (MSGID StringId);
  8. const wchar *StW (MSGID StringId);
  9. #endif
  10. #endif