pathmgr.h 237 B

123456789101112131415
  1. #ifndef _PATHMGR_H
  2. #define _PATHMGR_H
  3. #include <bfc/std.h>
  4. class PathMgr
  5. {
  6. public:
  7. //static const char *getUserSettingsPath();
  8. #ifdef WASABI_COMPILE_COMPONENTS
  9. static const wchar_t *getComponentDataPath(GUID g);
  10. #endif
  11. };
  12. #endif