mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-05 20:41:06 +00:00
78e7b2dd8c
Since it's not usable on macOS it needs to go.
21 lines
578 B
C
21 lines
578 B
C
#pragma once
|
|
|
|
#include "zstring.h"
|
|
|
|
#ifdef __unix__
|
|
FString GetUserFile (const char *path);
|
|
#endif
|
|
FString M_GetAppDataPath(bool create);
|
|
FString M_GetAutoexecPath();
|
|
FString M_GetConfigPath(bool for_reading);
|
|
FString M_GetScreenshotsPath();
|
|
FString M_GetSavegamesPath();
|
|
FString M_GetDocumentsPath();
|
|
FString M_GetDemoPath();
|
|
|
|
FString M_GetNormalizedPath(const char* path);
|
|
|
|
#ifdef __APPLE__
|
|
FString M_GetMacAppSupportPath(const bool create = true);
|
|
void M_GetMacSearchDirectories(FString& user_docs, FString& user_app_support, FString& local_app_support);
|
|
#endif // __APPLE__
|