hedgewars/SDLh.pas
changeset 11686 24710123beae
parent 11533 3189bf281000
child 11699 83c40c1eb0e7
child 12102 51596d30a724
equal deleted inserted replaced
11685:a2e86a867fb5 11686:24710123beae
  1045 function  SDL_LockSurface(Surface: PSDL_Surface): LongInt; cdecl; external SDLLibName;
  1045 function  SDL_LockSurface(Surface: PSDL_Surface): LongInt; cdecl; external SDLLibName;
  1046 procedure SDL_UnlockSurface(Surface: PSDL_Surface); cdecl; external SDLLibName;
  1046 procedure SDL_UnlockSurface(Surface: PSDL_Surface); cdecl; external SDLLibName;
  1047 
  1047 
  1048 function  SDL_GetError: PChar; cdecl; external SDLLibName;
  1048 function  SDL_GetError: PChar; cdecl; external SDLLibName;
  1049 
  1049 
  1050 function  SDL_SetVideoMode(width, height, bpp: LongInt; flags: LongWord): PSDL_Surface; cdecl; external SDLLibName;
       
  1051 function  SDL_CreateRGBSurface(flags: LongWord; Width, Height, Depth: LongInt; RMask, GMask, BMask, AMask: LongWord): PSDL_Surface; cdecl; external SDLLibName;
  1050 function  SDL_CreateRGBSurface(flags: LongWord; Width, Height, Depth: LongInt; RMask, GMask, BMask, AMask: LongWord): PSDL_Surface; cdecl; external SDLLibName;
  1052 function  SDL_CreateRGBSurfaceFrom(pixels: Pointer; width, height, depth, pitch: LongInt; RMask, GMask, BMask, AMask: LongWord): PSDL_Surface; cdecl; external SDLLibName;
  1051 function  SDL_CreateRGBSurfaceFrom(pixels: Pointer; width, height, depth, pitch: LongInt; RMask, GMask, BMask, AMask: LongWord): PSDL_Surface; cdecl; external SDLLibName;
  1053 procedure SDL_FreeSurface(Surface: PSDL_Surface); cdecl; external SDLLibName;
  1052 procedure SDL_FreeSurface(Surface: PSDL_Surface); cdecl; external SDLLibName;
  1054 function  SDL_SetColorKey(surface: PSDL_Surface; flag, key: LongWord): LongInt; cdecl; external SDLLibName;
  1053 function  SDL_SetColorKey(surface: PSDL_Surface; flag, key: LongWord): LongInt; cdecl; external SDLLibName;
  1055 function  SDL_SetAlpha(surface: PSDL_Surface; flag, key: LongWord): LongInt; cdecl; external SDLLibName;
  1054 function  SDL_SetAlpha(surface: PSDL_Surface; flag, key: LongWord): LongInt; cdecl; external SDLLibName;