Path-c-api.h 319 B

123456789101112131415161718
  1. #pragma once
  2. #include <stdint.h>
  3. #if defined(__cplusplus)
  4. extern "C"
  5. {
  6. #endif
  7. char* UnityPalGetExecutablePath();
  8. char* UnityPalGetTempPath();
  9. int32_t UnityPalIsAbsolutePath(const char* path);
  10. char* UnityPalBasename(const char* path);
  11. char* UnityPalDirectoryName(const char* path);
  12. #if defined(__cplusplus)
  13. }
  14. #endif