Commit 94d103a0 authored by Sam Lantinga's avatar Sam Lantinga

Updated MacOS Classic and MacOS X exports list

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401533
parent 3ad866a4
...@@ -204,5 +204,6 @@ ...@@ -204,5 +204,6 @@
SDL_strncasecmp SDL_strncasecmp
SDL_snprintf SDL_snprintf
SDL_vsnprintf SDL_vsnprintf
SDL_iconv
SDL_iconv_string SDL_iconv_string
SDL_InitQuickDraw SDL_InitQuickDraw
...@@ -38,5 +38,6 @@ print "\tSDL_strcasecmp\n"; ...@@ -38,5 +38,6 @@ print "\tSDL_strcasecmp\n";
print "\tSDL_strncasecmp\n"; print "\tSDL_strncasecmp\n";
print "\tSDL_snprintf\n"; print "\tSDL_snprintf\n";
print "\tSDL_vsnprintf\n"; print "\tSDL_vsnprintf\n";
print "\tSDL_iconv\n";
print "\tSDL_iconv_string\n"; print "\tSDL_iconv_string\n";
print "\tSDL_InitQuickDraw\n"; print "\tSDL_InitQuickDraw\n";
...@@ -188,6 +188,14 @@ ...@@ -188,6 +188,14 @@
_SDL_WM_ToggleFullScreen _SDL_WM_ToggleFullScreen
_SDL_WM_GrabInput _SDL_WM_GrabInput
_SDL_SoftStretch _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_QuartzWindow
.objc_class_name_SDL_QuartzWindowDelegate .objc_class_name_SDL_QuartzWindowDelegate
...@@ -3,8 +3,6 @@ ...@@ -3,8 +3,6 @@
# Program to take a set of header files and generate DLL export definitions # Program to take a set of header files and generate DLL export definitions
# Special exports to ignore for this platform # Special exports to ignore for this platform
$exclude{"SDL_putenv"} = 1;
$exclude{"SDL_getenv"} = 1;
while ( ($file = shift(@ARGV)) ) { while ( ($file = shift(@ARGV)) ) {
if ( ! defined(open(FILE, $file)) ) { if ( ! defined(open(FILE, $file)) ) {
...@@ -23,6 +21,14 @@ while ( ($file = shift(@ARGV)) ) { ...@@ -23,6 +21,14 @@ while ( ($file = shift(@ARGV)) ) {
} }
# Special exports to include for this platform # 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_QuartzWindow\n";
print "\t.objc_class_name_SDL_QuartzWindowDelegate\n"; print "\t.objc_class_name_SDL_QuartzWindowDelegate\n";
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment