Implement glfwCreateStandardCursor

Signed-off-by: falkTX <falktx@falktx.com>
This commit is contained in:
falkTX 2022-06-20 11:33:22 +01:00
parent 9cd3529011
commit da61999de5
No known key found for this signature in database
GPG key ID: CDBAA37ABC74FBA0
3 changed files with 48 additions and 3 deletions

View file

@ -54,6 +54,7 @@ typedef struct GLFWwindow GLFWwindow;
GLFWAPI const char* glfwGetClipboardString(GLFWwindow*) { return nullptr; }
GLFWAPI void glfwSetClipboardString(GLFWwindow*, const char*) {}
GLFWAPI GLFWcursor* glfwCreateStandardCursor(int) { return nullptr; }
GLFWAPI void glfwSetCursor(GLFWwindow*, GLFWcursor*) {}
GLFWAPI const char* glfwGetKeyName(int, int) { return nullptr; }
GLFWAPI int glfwGetKeyScancode(int) { return 0; }