mirror of
https://github.com/libsdl-org/SDL.git
synced 2026-03-27 02:41:52 +00:00
Added SDL_nextafter() and SDL_nextafterf()
This commit is contained in:
@@ -866,6 +866,8 @@ SDL3_0.0.0 {
|
||||
SDL_hid_get_report_descriptor;
|
||||
SDL_HasWindowSurface;
|
||||
SDL_DestroyWindowSurface;
|
||||
SDL_nextafter;
|
||||
SDL_nextafterf;
|
||||
# extra symbols go here (don't modify this line)
|
||||
local: *;
|
||||
};
|
||||
|
||||
@@ -892,3 +892,5 @@
|
||||
#define SDL_hid_get_report_descriptor SDL_hid_get_report_descriptor_REAL
|
||||
#define SDL_HasWindowSurface SDL_HasWindowSurface_REAL
|
||||
#define SDL_DestroyWindowSurface SDL_DestroyWindowSurface_REAL
|
||||
#define SDL_nextafter SDL_nextafter_REAL
|
||||
#define SDL_nextafterf SDL_nextafterf_REAL
|
||||
|
||||
@@ -937,3 +937,5 @@ SDL_DYNAPI_PROC(SDL_hid_device_info*,SDL_hid_get_device_info,(SDL_hid_device *a)
|
||||
SDL_DYNAPI_PROC(int,SDL_hid_get_report_descriptor,(SDL_hid_device *a, unsigned char *b, size_t c),(a,b,c),return)
|
||||
SDL_DYNAPI_PROC(SDL_bool,SDL_HasWindowSurface,(SDL_Window *a),(a),return)
|
||||
SDL_DYNAPI_PROC(int,SDL_DestroyWindowSurface,(SDL_Window *a),(a),return)
|
||||
SDL_DYNAPI_PROC(double,SDL_nextafter,(double a, double b),(a,b),return)
|
||||
SDL_DYNAPI_PROC(float,SDL_nextafterf,(float a, float b),(a,b),return)
|
||||
|
||||
Reference in New Issue
Block a user