resource.hpp 191 B

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