hedgewars/SDLh.pas
branchqmlfrontend
changeset 11699 83c40c1eb0e7
parent 11544 b69f5f22a3ba
parent 11686 24710123beae
child 12855 1b2b84315d27
equal deleted inserted replaced
11634:0af93f018701 11699:83c40c1eb0e7
  1047 function  SDL_LockSurface(Surface: PSDL_Surface): LongInt; cdecl; external SDLLibName;
  1047 function  SDL_LockSurface(Surface: PSDL_Surface): LongInt; cdecl; external SDLLibName;
  1048 procedure SDL_UnlockSurface(Surface: PSDL_Surface); cdecl; external SDLLibName;
  1048 procedure SDL_UnlockSurface(Surface: PSDL_Surface); cdecl; external SDLLibName;
  1049 
  1049 
  1050 function  SDL_GetError: PChar; cdecl; external SDLLibName;
  1050 function  SDL_GetError: PChar; cdecl; external SDLLibName;
  1051 
  1051 
  1052 function  SDL_SetVideoMode(width, height, bpp: LongInt; flags: LongWord): PSDL_Surface; cdecl; external SDLLibName;
       
  1053 function  SDL_CreateRGBSurface(flags: LongWord; Width, Height, Depth: LongInt; RMask, GMask, BMask, AMask: LongWord): PSDL_Surface; cdecl; external SDLLibName;
  1052 function  SDL_CreateRGBSurface(flags: LongWord; Width, Height, Depth: LongInt; RMask, GMask, BMask, AMask: LongWord): PSDL_Surface; cdecl; external SDLLibName;
  1054 function  SDL_CreateRGBSurfaceFrom(pixels: Pointer; width, height, depth, pitch: LongInt; RMask, GMask, BMask, AMask: LongWord): PSDL_Surface; cdecl; external SDLLibName;
  1053 function  SDL_CreateRGBSurfaceFrom(pixels: Pointer; width, height, depth, pitch: LongInt; RMask, GMask, BMask, AMask: LongWord): PSDL_Surface; cdecl; external SDLLibName;
  1055 procedure SDL_FreeSurface(Surface: PSDL_Surface); cdecl; external SDLLibName;
  1054 procedure SDL_FreeSurface(Surface: PSDL_Surface); cdecl; external SDLLibName;
  1056 function  SDL_SetColorKey(surface: PSDL_Surface; flag, key: LongWord): LongInt; cdecl; external SDLLibName;
  1055 function  SDL_SetColorKey(surface: PSDL_Surface; flag, key: LongWord): LongInt; cdecl; external SDLLibName;
  1057 function  SDL_SetAlpha(surface: PSDL_Surface; flag, key: LongWord): LongInt; cdecl; external SDLLibName;
  1056 function  SDL_SetAlpha(surface: PSDL_Surface; flag, key: LongWord): LongInt; cdecl; external SDLLibName;