summaryrefslogtreecommitdiff
path: root/src/core.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/core.c')
-rw-r--r--src/core.c25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/core.c b/src/core.c
index 2146510..d22ed60 100644
--- a/src/core.c
+++ b/src/core.c
@@ -1491,6 +1491,31 @@ int lcoreSetGCUnload( lua_State* L ) {
}
/*
+> platform = RL.GetPlatform()
+
+Get platform. Returns "Windows", "Linux", "FreeBSD", "OpenBSD", "Apple" or "Emscripten"
+
+- Success return string
+*/
+int lcoreGetPlatform( lua_State* L ) {
+#if defined( _WIN32 )
+ lua_pushstring( L, "Windows" );
+#elif defined( __linux__ )
+ lua_pushstring( L, "Linux" );
+#elif defined( __FreeBSD__ )
+ lua_pushstring( L, "FreeBSD" );
+#elif defined( __OpenBSD__ )
+ lua_pushstring( L, "OpenBSD" );
+#elif defined( __APPLE__ )
+ lua_pushstring( L, "Apple" );
+#elif defined( __EMSCRIPTEN__ )
+ lua_pushstring( L, "Emscripten" );
+#endif
+
+ return 1;
+}
+
+/*
## Core - Files management functions
*/