~ubuntu-branches/ubuntu/oneiric/mazeofgalious/oneiric

« back to all changes in this revision

Viewing changes to sound.h

  • Committer: Bazaar Package Importer
  • Author(s): Gürkan Sengün
  • Date: 2005-12-01 13:04:23 UTC
  • Revision ID: james.westby@ubuntu.com-20051201130423-d2fwyv8jt082cbxt
Tags: upstream-0.62.dfsg2
Import upstream version 0.62.dfsg2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef __BRAIN_SDL_SOUND
 
2
#define __BRAIN_SDL_SOUND
 
3
 
 
4
typedef Mix_Chunk * SOUNDT;
 
5
 
 
6
bool Sound_initialization(void);
 
7
void Sound_release(void);
 
8
 
 
9
SOUNDT Sound_create_sound(char *file,int flags);
 
10
void Delete_sound(SOUNDT s);
 
11
void Sound_play(SOUNDT s);
 
12
 
 
13
void Sound_create_music(char *f1,char *f2,char *f3);
 
14
void Sound_subst_music(char *f);
 
15
void Sound_subst_music_now(char *f);
 
16
void Sound_temporary_release_music(void);
 
17
void Sound_release_music(void);
 
18
void Sound_pause_music(void);
 
19
void Sound_unpause_music(void);
 
20
 
 
21
void music_recovery(void);
 
22
 
 
23
#endif
 
24