mirror of
https://github.com/libsdl-org/SDL.git
synced 2025-06-01 17:37:39 +00:00
Added SDL_SetErrorV()
This commit is contained in:
parent
d5e02474ac
commit
a567786762
5 changed files with 39 additions and 7 deletions
|
@ -1179,6 +1179,7 @@ SDL3_0.0.0 {
|
|||
SDL_StepBackUTF8;
|
||||
SDL_DelayPrecise;
|
||||
SDL_CalculateGPUTextureFormatSize;
|
||||
SDL_SetErrorV;
|
||||
# extra symbols go here (don't modify this line)
|
||||
local: *;
|
||||
};
|
||||
|
|
|
@ -1204,3 +1204,4 @@
|
|||
#define SDL_StepBackUTF8 SDL_StepBackUTF8_REAL
|
||||
#define SDL_DelayPrecise SDL_DelayPrecise_REAL
|
||||
#define SDL_CalculateGPUTextureFormatSize SDL_CalculateGPUTextureFormatSize_REAL
|
||||
#define SDL_SetErrorV SDL_SetErrorV_REAL
|
||||
|
|
|
@ -1210,3 +1210,4 @@ SDL_DYNAPI_PROC(long,SDL_wcstol,(const wchar_t *a, wchar_t **b, int c),(a,b,c),r
|
|||
SDL_DYNAPI_PROC(Uint32,SDL_StepBackUTF8,(const char *a, const char **b),(a,b),return)
|
||||
SDL_DYNAPI_PROC(void,SDL_DelayPrecise,(Uint64 a),(a),)
|
||||
SDL_DYNAPI_PROC(Uint32,SDL_CalculateGPUTextureFormatSize,(SDL_GPUTextureFormat a, Uint32 b, Uint32 c, Uint32 d),(a,b,c,d),return)
|
||||
SDL_DYNAPI_PROC(bool,SDL_SetErrorV,(SDL_PRINTF_FORMAT_STRING const char *a,va_list b),(a,b),return)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue