CIOSUtils.h 703 B

1234567891011121314151617181920212223242526272829303132
  1. /*
  2. * CIOSUtils.h, part of VCMI engine
  3. *
  4. * Authors: listed in file AUTHORS in main folder
  5. *
  6. * License: GNU General Public License v2.0 or later
  7. * Full text of license available in license.txt file, in main folder
  8. *
  9. */
  10. #include <TargetConditionals.h>
  11. #ifdef __OBJC__
  12. @class NSURL;
  13. #endif
  14. extern const char *ios_documentsPath();
  15. extern const char *ios_cachesPath();
  16. #ifdef __OBJC__
  17. NSURL *sharedContainerURL();
  18. NSURL *sharedGameDataURL();
  19. #endif
  20. extern const char *ios_sharedDataPath();
  21. #if TARGET_OS_SIMULATOR
  22. extern const char *ios_hostApplicationSupportPath();
  23. #endif
  24. extern const char *ios_bundlePath();
  25. extern const char *ios_frameworksPath();
  26. extern const char *ios_bundleIdentifier();