hedgewars/SDLh.pas
branchphysfslayer
changeset 8046 4d3415927d2c
parent 8028 dc30104660d3
child 8068 b35427506169
equal deleted inserted replaced
8043:da083f8d95e6 8046:4d3415927d2c
  1022 function  Mix_AllocateChannels(numchans: LongInt): LongInt; cdecl; external SDL_MixerLibName;
  1022 function  Mix_AllocateChannels(numchans: LongInt): LongInt; cdecl; external SDL_MixerLibName;
  1023 procedure Mix_FreeChunk(chunk: PMixChunk); cdecl; external SDL_MixerLibName;
  1023 procedure Mix_FreeChunk(chunk: PMixChunk); cdecl; external SDL_MixerLibName;
  1024 procedure Mix_FreeMusic(music: PMixMusic); cdecl; external SDL_MixerLibName;
  1024 procedure Mix_FreeMusic(music: PMixMusic); cdecl; external SDL_MixerLibName;
  1025 
  1025 
  1026 function  Mix_LoadWAV_RW(src: PSDL_RWops; freesrc: LongInt): PMixChunk; cdecl; external SDL_MixerLibName;
  1026 function  Mix_LoadWAV_RW(src: PSDL_RWops; freesrc: LongInt): PMixChunk; cdecl; external SDL_MixerLibName;
  1027 function  Mix_LoadMUS(const filename: PChar): PMixMusic; cdecl; external SDL_MixerLibName;
  1027 function  Mix_LoadMUS_RW(src: PSDL_RWops): PMixMusic; cdecl; external SDL_MixerLibName;
  1028 
  1028 
  1029 function  Mix_Playing(channel: LongInt): LongInt; cdecl; external SDL_MixerLibName;
  1029 function  Mix_Playing(channel: LongInt): LongInt; cdecl; external SDL_MixerLibName;
  1030 function  Mix_PlayingMusic: LongInt; cdecl; external SDL_MixerLibName;
  1030 function  Mix_PlayingMusic: LongInt; cdecl; external SDL_MixerLibName;
  1031 function  Mix_FadeInMusic(music: PMixMusic; loops: LongInt; ms: LongInt): LongInt; cdecl; external SDL_MixerLibName;
  1031 function  Mix_FadeInMusic(music: PMixMusic; loops: LongInt; ms: LongInt): LongInt; cdecl; external SDL_MixerLibName;
  1032 
  1032