Add SDL_Vulkan_GetPresentationSupport

This commit is contained in:
Ethan Lee
2024-07-11 12:58:28 -04:00
parent 186fec2560
commit 1993ef664e
15 changed files with 167 additions and 0 deletions

View File

@@ -1045,6 +1045,7 @@ SDL3_0.0.0 {
SDL_wcsnstr;
SDL_wcsstr;
SDL_wcstol;
SDL_Vulkan_GetPresentationSupport;
# extra symbols go here (don't modify this line)
local: *;
};

View File

@@ -1070,3 +1070,4 @@
#define SDL_wcsnstr SDL_wcsnstr_REAL
#define SDL_wcsstr SDL_wcsstr_REAL
#define SDL_wcstol SDL_wcstol_REAL
#define SDL_Vulkan_GetPresentationSupport SDL_Vulkan_GetPresentationSupport_REAL

View File

@@ -1076,3 +1076,4 @@ SDL_DYNAPI_PROC(size_t,SDL_wcsnlen,(const wchar_t *a, size_t b),(a,b),return)
SDL_DYNAPI_PROC(wchar_t*,SDL_wcsnstr,(const wchar_t *a, const wchar_t *b, size_t c),(a,b,c),return)
SDL_DYNAPI_PROC(wchar_t*,SDL_wcsstr,(const wchar_t *a, const wchar_t *b),(a,b),return)
SDL_DYNAPI_PROC(long,SDL_wcstol,(const wchar_t *a, wchar_t **b, int c),(a,b,c),return)
SDL_DYNAPI_PROC(SDL_bool,SDL_Vulkan_GetPresentationSupport,(VkInstance a, VkPhysicalDevice b, Uint32 c),(a,b,c),return)