BrowseForFolder.h 233 B

1234567891011121314
  1. #pragma once
  2. #include <Windows.h>
  3. #include <ShlObj.h>
  4. #include <string>
  5. #include <Commdlg.h>
  6. #include <tchar.h>
  7. class BrowseForFolder
  8. {
  9. public :
  10. int SelectFile(std::string& path);
  11. private:
  12. std::string TCHAR2STRING(TCHAR* STR);
  13. };