removing commnets and also error checking

This commit is contained in:
Greg Wells
2025-05-14 09:04:19 -04:00
parent f8a4ba22dd
commit b35daa0ca1
5 changed files with 14 additions and 49 deletions

View File

@@ -24,7 +24,8 @@ typedef enum gnReturnMessage {
GN_FAILED_CREATE_RENDERPASS,
GN_FAILED_CREATE_INSTANCE,
GN_FAILED_TO_ATTACH_WINDOW,
GN_FAILED_TO_CREATE_IMAGE
GN_FAILED_TO_CREATE_IMAGE,
GN_FAILED_CREATE_WINDOW_SURFACE
} gnReturnMessage;
inline gnString lastReturnAPIMessage = "";

View File

@@ -1 +0,0 @@
#define GN_PLATFORM_FUNCTION(RETURN_TYPE, NAME, __ARGS__) (RETURN_TYPE (*NAME)(__ARGS__))