Skip to content

Commit

Permalink
Updated MacOS Classic and MacOS X exports list
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Mar 14, 2006
1 parent 59a112f commit d88308b
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 4 deletions.
1 change: 1 addition & 0 deletions src/main/macos/exports/SDL.x
Expand Up @@ -204,5 +204,6 @@
SDL_strncasecmp
SDL_snprintf
SDL_vsnprintf
SDL_iconv
SDL_iconv_string
SDL_InitQuickDraw
1 change: 1 addition & 0 deletions src/main/macos/exports/gendef.pl
Expand Up @@ -38,5 +38,6 @@
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";
10 changes: 9 additions & 1 deletion src/main/macosx/exports/SDL.x
Expand Up @@ -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
12 changes: 9 additions & 3 deletions src/main/macosx/exports/gendef.pl
Expand Up @@ -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)) ) {
Expand All @@ -23,6 +21,14 @@
}

# 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";

0 comments on commit d88308b

Please sign in to comment.