mirror of
https://github.com/yawut/SDL.git
synced 2026-04-25 15:58:04 -05:00
Updated MacOS Classic and MacOS X exports list
This commit is contained in:
parent
04576001ed
commit
dc991f4f84
|
|
@ -204,5 +204,6 @@
|
|||
SDL_strncasecmp
|
||||
SDL_snprintf
|
||||
SDL_vsnprintf
|
||||
SDL_iconv
|
||||
SDL_iconv_string
|
||||
SDL_InitQuickDraw
|
||||
|
|
|
|||
|
|
@ -38,5 +38,6 @@ print "\tSDL_strcasecmp\n";
|
|||
print "\tSDL_strncasecmp\n";
|
||||
print "\tSDL_snprintf\n";
|
||||
print "\tSDL_vsnprintf\n";
|
||||
print "\tSDL_iconv\n";
|
||||
print "\tSDL_iconv_string\n";
|
||||
print "\tSDL_InitQuickDraw\n";
|
||||
|
|
|
|||
|
|
@ -188,6 +188,14 @@
|
|||
_SDL_WM_ToggleFullScreen
|
||||
_SDL_WM_GrabInput
|
||||
_SDL_SoftStretch
|
||||
SDL_iconv_string
|
||||
_SDL_strrev
|
||||
_SDL_strupr
|
||||
_SDL_strlwr
|
||||
_SDL_ltoa
|
||||
_SDL_ultoa
|
||||
_SDL_lltoa
|
||||
_SDL_ulltoa
|
||||
_SDL_iconv
|
||||
_SDL_iconv_string
|
||||
.objc_class_name_SDL_QuartzWindow
|
||||
.objc_class_name_SDL_QuartzWindowDelegate
|
||||
|
|
|
|||
|
|
@ -3,8 +3,6 @@
|
|||
# Program to take a set of header files and generate DLL export definitions
|
||||
|
||||
# Special exports to ignore for this platform
|
||||
$exclude{"SDL_putenv"} = 1;
|
||||
$exclude{"SDL_getenv"} = 1;
|
||||
|
||||
while ( ($file = shift(@ARGV)) ) {
|
||||
if ( ! defined(open(FILE, $file)) ) {
|
||||
|
|
@ -23,6 +21,14 @@ while ( ($file = shift(@ARGV)) ) {
|
|||
}
|
||||
|
||||
# Special exports to include for this platform
|
||||
print "\tSDL_iconv_string\n";
|
||||
print "\t_SDL_strrev\n";
|
||||
print "\t_SDL_strupr\n";
|
||||
print "\t_SDL_strlwr\n";
|
||||
print "\t_SDL_ltoa\n";
|
||||
print "\t_SDL_ultoa\n";
|
||||
print "\t_SDL_lltoa\n";
|
||||
print "\t_SDL_ulltoa\n";
|
||||
print "\t_SDL_iconv\n";
|
||||
print "\t_SDL_iconv_string\n";
|
||||
print "\t.objc_class_name_SDL_QuartzWindow\n";
|
||||
print "\t.objc_class_name_SDL_QuartzWindowDelegate\n";
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user