# HG changeset patch # User Sam Lantinga # Date 1015393041 0 # Node ID 54ad1d2f1325a066d8e174856d4848cabaccdaf4 # Parent d2d48e10f370f954986cb070a85d666e002a6faa *** empty log message *** diff -r d2d48e10f370 -r 54ad1d2f1325 configure.in --- a/configure.in Wed Mar 06 05:20:11 2002 +0000 +++ b/configure.in Wed Mar 06 05:37:21 2002 +0000 @@ -15,7 +15,7 @@ SDL_MAJOR_VERSION=1 SDL_MINOR_VERSION=2 SDL_MICRO_VERSION=4 -SDL_INTERFACE_AGE=4 +SDL_INTERFACE_AGE=0 SDL_BINARY_AGE=4 SDL_VERSION=$SDL_MAJOR_VERSION.$SDL_MINOR_VERSION.$SDL_MICRO_VERSION diff -r d2d48e10f370 -r 54ad1d2f1325 src/main/beos/exports/Makefile --- a/src/main/beos/exports/Makefile Wed Mar 06 05:20:11 2002 +0000 +++ b/src/main/beos/exports/Makefile Wed Mar 06 05:37:21 2002 +0000 @@ -12,6 +12,7 @@ ../../../../include/SDL_joystick.h \ ../../../../include/SDL_keyboard.h \ ../../../../include/SDL_keysym.h \ + ../../../../include/SDL_loadso.h \ ../../../../include/SDL_main.h \ ../../../../include/SDL_mouse.h \ ../../../../include/SDL_mutex.h \ diff -r d2d48e10f370 -r 54ad1d2f1325 src/main/beos/exports/SDL.exp --- a/src/main/beos/exports/SDL.exp Wed Mar 06 05:20:11 2002 +0000 +++ b/src/main/beos/exports/SDL.exp Wed Mar 06 05:37:21 2002 +0000 @@ -74,6 +74,9 @@ _SDL_GetModState _SDL_SetModState _SDL_GetKeyName +_SDL_LoadObject +_SDL_LoadFunction +_SDL_UnloadObject _SDL_SetModuleHandle _SDL_RegisterApp _SDL_InitQuickDraw diff -r d2d48e10f370 -r 54ad1d2f1325 src/main/macos/exports/Makefile --- a/src/main/macos/exports/Makefile Wed Mar 06 05:20:11 2002 +0000 +++ b/src/main/macos/exports/Makefile Wed Mar 06 05:37:21 2002 +0000 @@ -14,6 +14,7 @@ ../../../../include/SDL_joystick.h \ ../../../../include/SDL_keyboard.h \ ../../../../include/SDL_keysym.h \ + ../../../../include/SDL_loadso.h \ ../../../../include/SDL_mouse.h \ ../../../../include/SDL_mutex.h \ ../../../../include/SDL_quit.h \ diff -r d2d48e10f370 -r 54ad1d2f1325 src/main/macos/exports/SDL.x --- a/src/main/macos/exports/SDL.x Wed Mar 06 05:20:11 2002 +0000 +++ b/src/main/macos/exports/SDL.x Wed Mar 06 05:37:21 2002 +0000 @@ -76,6 +76,9 @@ SDL_GetModState SDL_SetModState SDL_GetKeyName + SDL_LoadObject + SDL_LoadFunction + SDL_UnloadObject SDL_GetMouseState SDL_GetRelativeMouseState SDL_WarpMouse diff -r d2d48e10f370 -r 54ad1d2f1325 src/main/macosx/exports/Makefile --- a/src/main/macosx/exports/Makefile Wed Mar 06 05:20:11 2002 +0000 +++ b/src/main/macosx/exports/Makefile Wed Mar 06 05:37:21 2002 +0000 @@ -13,6 +13,7 @@ ../../../../include/SDL_joystick.h \ ../../../../include/SDL_keyboard.h \ ../../../../include/SDL_keysym.h \ + ../../../../include/SDL_loadso.h \ ../../../../include/SDL_mouse.h \ ../../../../include/SDL_mutex.h \ ../../../../include/SDL_quit.h \ diff -r d2d48e10f370 -r 54ad1d2f1325 src/main/macosx/exports/SDL.x --- a/src/main/macosx/exports/SDL.x Wed Mar 06 05:20:11 2002 +0000 +++ b/src/main/macosx/exports/SDL.x Wed Mar 06 05:37:21 2002 +0000 @@ -74,6 +74,9 @@ _SDL_GetModState _SDL_SetModState _SDL_GetKeyName + _SDL_LoadObject + _SDL_LoadFunction + _SDL_UnloadObject _SDL_GetMouseState _SDL_GetRelativeMouseState _SDL_WarpMouse diff -r d2d48e10f370 -r 54ad1d2f1325 src/main/win32/exports/Makefile --- a/src/main/win32/exports/Makefile Wed Mar 06 05:20:11 2002 +0000 +++ b/src/main/win32/exports/Makefile Wed Mar 06 05:37:21 2002 +0000 @@ -13,6 +13,7 @@ ../../../../include/SDL_joystick.h \ ../../../../include/SDL_keyboard.h \ ../../../../include/SDL_keysym.h \ + ../../../../include/SDL_loadso.h \ ../../../../include/SDL_main.h \ ../../../../include/SDL_mouse.h \ ../../../../include/SDL_mutex.h \ diff -r d2d48e10f370 -r 54ad1d2f1325 src/main/win32/exports/SDL.def --- a/src/main/win32/exports/SDL.def Wed Mar 06 05:20:11 2002 +0000 +++ b/src/main/win32/exports/SDL.def Wed Mar 06 05:37:21 2002 +0000 @@ -74,6 +74,9 @@ SDL_GetModState SDL_SetModState SDL_GetKeyName + SDL_LoadObject + SDL_LoadFunction + SDL_UnloadObject SDL_SetModuleHandle SDL_RegisterApp SDL_InitQuickDraw