diff options
author | Fire-Head <Fire-Head@users.noreply.github.com> | 2019-05-31 19:02:26 +0200 |
---|---|---|
committer | Fire-Head <Fire-Head@users.noreply.github.com> | 2019-05-31 19:02:26 +0200 |
commit | 28fce310d5cb9a3a81e0f038192a39abd688d1bd (patch) | |
tree | 392a32b7c35ad574879564487f52ed14d6d4ea5c /src/skel/platform.h | |
parent | more high level functions (diff) | |
download | re3-28fce310d5cb9a3a81e0f038192a39abd688d1bd.tar re3-28fce310d5cb9a3a81e0f038192a39abd688d1bd.tar.gz re3-28fce310d5cb9a3a81e0f038192a39abd688d1bd.tar.bz2 re3-28fce310d5cb9a3a81e0f038192a39abd688d1bd.tar.lz re3-28fce310d5cb9a3a81e0f038192a39abd688d1bd.tar.xz re3-28fce310d5cb9a3a81e0f038192a39abd688d1bd.tar.zst re3-28fce310d5cb9a3a81e0f038192a39abd688d1bd.zip |
Diffstat (limited to '')
-rw-r--r-- | src/skel/platform.h | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/src/skel/platform.h b/src/skel/platform.h new file mode 100644 index 00000000..5338b270 --- /dev/null +++ b/src/skel/platform.h @@ -0,0 +1,36 @@ +#ifndef PLATFORM_H +#define PLATFORM_H + +#include "rwcore.h" +#include "skeleton.h" + +#ifdef __cplusplus +extern "C" +{ +#endif /* __cplusplus */ + +extern RwUInt32 psTimer(void); + + +extern RwBool psInitialise(void); +extern void psTerminate(void); + +extern void psCameraShowRaster(RwCamera *camera); +extern RwBool psCameraBeginUpdate(RwCamera *camera); + +extern void psMouseSetPos(RwV2d *pos); + +extern RwBool psSelectDevice(RwBool useDefault); + +/* install the platform specific file system */ +extern RwBool psInstallFileSystem(void); + + +/* Handle native texture support */ +extern RwBool psNativeTextureSupport(void); + +#ifdef __cplusplus +} +#endif /* __cplusplus */ + +#endif /* PLATFORM_H */ |