PathString.h 272 B

123456789101112131415161718192021
  1. #ifndef NULLSOFT_BFC_PATHSTRING_H
  2. #define NULLSOFT_BFC_PATHSTRING_H
  3. #ifdef _WIN32
  4. #include <windows.h>
  5. class PathString
  6. {
  7. public:
  8. PathString(const wchar_t *directory, const wchar_t *filename);
  9. private:
  10. wchar_t path[MAX_PATH];
  11. };
  12. #else
  13. #error port me!
  14. #endif
  15. #endif