summaryrefslogtreecommitdiffhomepage
path: root/examples/web/core/core_basic_window.c
diff options
context:
space:
mode:
Diffstat (limited to 'examples/web/core/core_basic_window.c')
-rw-r--r--examples/web/core/core_basic_window.c19
1 files changed, 16 insertions, 3 deletions
diff --git a/examples/web/core/core_basic_window.c b/examples/web/core/core_basic_window.c
index 4d4e33d..b9e2828 100644
--- a/examples/web/core/core_basic_window.c
+++ b/examples/web/core/core_basic_window.c
@@ -19,6 +19,10 @@
#include <emscripten/emscripten.h>
#endif
+#if defined(PLATFORM_ANDROID)
+ #include "android_native_app_glue.h"
+#endif
+
//----------------------------------------------------------------------------------
// Global Variables Definition
//----------------------------------------------------------------------------------
@@ -33,12 +37,20 @@ void UpdateDrawFrame(void); // Update and Draw one frame
//----------------------------------------------------------------------------------
// Main Enry Point
//----------------------------------------------------------------------------------
-int main()
+#if defined(PLATFORM_ANDROID)
+void android_main(struct android_app *app)
+#else
+int main(void)
+#endif
{
// Initialization
//--------------------------------------------------------------------------------------
+#if defined(PLATFORM_ANDROID)
+ InitWindow(screenWidth, screenHeight, app);
+#else
InitWindow(screenWidth, screenHeight, "raylib [core] example - basic window");
-
+#endif
+
#if defined(PLATFORM_WEB)
emscripten_set_main_loop(UpdateDrawFrame, 0, 1);
#else
@@ -56,8 +68,9 @@ int main()
//--------------------------------------------------------------------------------------
CloseWindow(); // Close window and OpenGL context
//--------------------------------------------------------------------------------------
-
+#if !defined(PLATFORM_ANDROID)
return 0;
+#endif
}
//----------------------------------------------------------------------------------