hedgewars/SDLh.pas
changeset 2674 2fce032f2f95
parent 2671 7e0f88013fe8
child 2689 dfda97c153a4
--- 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;