Path.h 348 B

12345678910111213141516171819
  1. #pragma once
  2. #include "il2cpp-config.h"
  3. #include <string>
  4. #undef GetTempPath // Get rid of windows.h #define.
  5. namespace il2cpp
  6. {
  7. namespace vm
  8. {
  9. class LIBIL2CPP_CODEGEN_API Path
  10. {
  11. public:
  12. static void SetTempPath(const char* path);
  13. static std::string GetTempPath();
  14. };
  15. } /* namespace vm */
  16. } /* namespace il2cpp */