mirror of
https://github.com/libsdl-org/SDL.git
synced 2026-06-27 00:08:39 +00:00
Added SDL_GetWindows()
This commit is contained in:
parent
2c745dbd3c
commit
0ff5c05486
6 changed files with 64 additions and 3 deletions
|
|
@ -480,6 +480,7 @@ SDL3_0.0.0 {
|
|||
SDL_GetWindowSurface;
|
||||
SDL_GetWindowSurfaceVSync;
|
||||
SDL_GetWindowTitle;
|
||||
SDL_GetWindows;
|
||||
SDL_GlobDirectory;
|
||||
SDL_GlobStorageDirectory;
|
||||
SDL_HapticEffectSupported;
|
||||
|
|
|
|||
|
|
@ -505,6 +505,7 @@
|
|||
#define SDL_GetWindowSurface SDL_GetWindowSurface_REAL
|
||||
#define SDL_GetWindowSurfaceVSync SDL_GetWindowSurfaceVSync_REAL
|
||||
#define SDL_GetWindowTitle SDL_GetWindowTitle_REAL
|
||||
#define SDL_GetWindows SDL_GetWindows_REAL
|
||||
#define SDL_GlobDirectory SDL_GlobDirectory_REAL
|
||||
#define SDL_GlobStorageDirectory SDL_GlobStorageDirectory_REAL
|
||||
#define SDL_HapticEffectSupported SDL_HapticEffectSupported_REAL
|
||||
|
|
|
|||
|
|
@ -525,6 +525,7 @@ SDL_DYNAPI_PROC(int,SDL_GetWindowSizeInPixels,(SDL_Window *a, int *b, int *c),(a
|
|||
SDL_DYNAPI_PROC(SDL_Surface*,SDL_GetWindowSurface,(SDL_Window *a),(a),return)
|
||||
SDL_DYNAPI_PROC(int,SDL_GetWindowSurfaceVSync,(SDL_Window *a, int *b),(a,b),return)
|
||||
SDL_DYNAPI_PROC(const char*,SDL_GetWindowTitle,(SDL_Window *a),(a),return)
|
||||
SDL_DYNAPI_PROC(SDL_Window**,SDL_GetWindows,(int *a),(a),return)
|
||||
SDL_DYNAPI_PROC(char**,SDL_GlobDirectory,(const char *a, const char *b, SDL_GlobFlags c, int *d),(a,b,c,d),return)
|
||||
SDL_DYNAPI_PROC(char**,SDL_GlobStorageDirectory,(SDL_Storage *a, const char *b, const char *c, SDL_GlobFlags d, int *e),(a,b,c,d,e),return)
|
||||
SDL_DYNAPI_PROC(SDL_bool,SDL_HapticEffectSupported,(SDL_Haptic *a, const SDL_HapticEffect *b),(a,b),return)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue