summaryrefslogtreecommitdiffhomepage
path: root/src/raylib.h
diff options
context:
space:
mode:
authoruser <email>2017-12-14 11:52:45 +0100
committeruser <email>2017-12-14 11:52:45 +0100
commit2affac820e64393ac4294c53c1a7f47742e8dec9 (patch)
tree1496d49f40b10785e20746780328cf21288b4aea /src/raylib.h
parent217917530b12c7332fb83381aef6acf9975e7361 (diff)
downloadraylib-2affac820e64393ac4294c53c1a7f47742e8dec9.tar.gz
raylib-2affac820e64393ac4294c53c1a7f47742e8dec9.zip
make raylib not clash with windows-header
Diffstat (limited to 'src/raylib.h')
-rw-r--r--src/raylib.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/raylib.h b/src/raylib.h
index 0a9eab46..16595b5b 100644
--- a/src/raylib.h
+++ b/src/raylib.h
@@ -682,8 +682,8 @@ extern "C" { // Prevents name mangling of functions
//------------------------------------------------------------------------------------
// Window-related functions
-RLAPI void InitWindow(int width, int height, void *data); // Initialize window and OpenGL context
-RLAPI void CloseWindow(void); // Close window and unload OpenGL context
+RLAPI void InitRLWindow(int width, int height, void *data); // Initialize window and OpenGL context
+RLAPI void CloseRLWindow(void); // Close window and unload OpenGL context
RLAPI bool WindowShouldClose(void); // Check if KEY_ESCAPE pressed or Close icon pressed
RLAPI bool IsWindowMinimized(void); // Check if window has been minimized (or lost focus)
RLAPI void ToggleFullscreen(void); // Toggle fullscreen mode (only PLATFORM_DESKTOP)
@@ -696,8 +696,8 @@ RLAPI int GetScreenWidth(void); // Get current
RLAPI int GetScreenHeight(void); // Get current screen height
// Cursor-related functions
-RLAPI void ShowCursor(void); // Shows cursor
-RLAPI void HideCursor(void); // Hides cursor
+RLAPI void ShowRLCursor(void); // Shows cursor
+RLAPI void HideRLCursor(void); // Hides cursor
RLAPI bool IsCursorHidden(void); // Check if cursor is not visible
RLAPI void EnableCursor(void); // Enables cursor (unlock cursor)
RLAPI void DisableCursor(void); // Disables cursor (lock cursor)