--- a/hedgewars/SDLh.pas Sun Jan 03 17:27:25 2010 +0000
+++ b/hedgewars/SDLh.pas Sun Jan 03 22:58:19 2010 +0000
@@ -571,6 +571,7 @@
{* SDL *}
function SDL_Init(flags: Longword): LongInt; cdecl; external SDLLibName;
+function SDL_InitSubSystem(flags: LongWord): LongInt; cdecl; external SDLLibName;
procedure SDL_Quit; cdecl; external SDLLibName;
function SDL_VideoDriverName(var namebuf; maxlen: LongInt): PChar; cdecl; external SDLLibName;
@@ -628,6 +629,7 @@
function SDL_ShowCursor(toggle: LongInt): LongInt; cdecl; external SDLLibName;
procedure SDL_WM_SetCaption(title: PChar; icon: PChar); cdecl; external SDLLibName;
+function SDL_WM_ToggleFullScreen(surface: PSDL_Surface): LongInt; cdecl; external SDLLibName;
function SDL_CreateMutex: PSDL_mutex; cdecl; external SDLLibName;
procedure SDL_DestroyMutex(mutex: PSDL_mutex); cdecl; external SDLLibName;