hedgewars/SDLh.pas
branchhedgeroid
changeset 5504 96d735b83d43
parent 5495 272ed78e59a7
child 5530 25d4118056e1
--- a/hedgewars/SDLh.pas	Tue Aug 09 20:51:20 2011 +0200
+++ b/hedgewars/SDLh.pas	Tue Aug 09 20:52:26 2011 +0200
@@ -823,6 +823,8 @@
 procedure SDL_WM_SetCaption(title: PChar; icon: PChar); cdecl; external SDLLibName;
 function  SDL_WM_ToggleFullScreen(surface: PSDL_Surface): LongInt; cdecl; external SDLLibName;
 
+function  SDL_CreateThread(fn: pointer; data: pointer): PSDL_Thread; cdecl; external SDLLibName;
+procedure SDL_WaitThread(thread: PSDL_Thread; status: PLongInt); cdecl; external SDLLibName;
 function  SDL_CreateMutex: PSDL_mutex; cdecl; external SDLLibName;
 procedure SDL_DestroyMutex(mutex: PSDL_mutex); cdecl; external SDLLibName;
 function  SDL_LockMutex(mutex: PSDL_mutex): LongInt; cdecl; external SDLLibName name 'SDL_mutexP';