b3ResourcePath.h 283 B

12345678910111213
  1. #ifndef _B3_RESOURCE_PATH_H
  2. #define _B3_RESOURCE_PATH_H
  3. #include <string>
  4. class b3ResourcePath
  5. {
  6. public:
  7. static int getExePath(char* path, int maxPathLenInBytes);
  8. static int findResourcePath(const char* sourceName, char* resourcePath, int maxResourcePathLenInBytes);
  9. };
  10. #endif