56 lines
2.1 KiB
C
56 lines
2.1 KiB
C
/*
|
|
* UNPUBLISHED -- Rights reserved under the copyright laws of the
|
|
* United States. Use of a copyright notice is precautionary only and
|
|
* does not imply publication or disclosure.
|
|
*
|
|
* THIS DOCUMENTATION CONTAINS CONFIDENTIAL AND PROPRIETARY INFORMATION
|
|
* OF BLIZZARD ENTERTAINMENT. ANY DUPLICATION, MODIFICATION,
|
|
* DISTRIBUTION, OR DISCLOSURE IS STRICTLY PROHIBITED WITHOUT THE PRIOR
|
|
* EXPRESS WRITTEN PERMISSION OF BLIZZARD ENTERTAINMENT.
|
|
*/
|
|
|
|
//sound
|
|
extern float sound_cpp_init_value;
|
|
extern IDirectSoundBuffer *DSBs[8];
|
|
extern IDirectSound *sglpDS;
|
|
extern char gbSndInited;
|
|
extern int sglMusicVolume;
|
|
extern int sglSoundVolume;
|
|
extern HMODULE hDsound_dll; // idb
|
|
extern void *sgpMusicTrack;
|
|
extern IDirectSoundBuffer *sglpDSB;
|
|
|
|
void __cdecl sound_cpp_init();
|
|
void __fastcall snd_update(bool bStopAll);
|
|
void __fastcall snd_stop_snd(TSnd *pSnd);
|
|
bool __fastcall snd_playing(TSnd *pSnd);
|
|
void __fastcall snd_play_snd(TSnd *pSnd, int lVolume, int lPan);
|
|
IDirectSoundBuffer *__fastcall sound_dup_channel(IDirectSoundBuffer *DSB);
|
|
bool __fastcall sound_file_reload(TSnd *sound_file, IDirectSoundBuffer *DSB);
|
|
TSnd *__fastcall sound_file_load(char *path);
|
|
void __fastcall sound_CreateSoundBuffer(TSnd *sound_file);
|
|
void __fastcall sound_file_cleanup(TSnd *sound_file);
|
|
void __fastcall snd_init(HWND hWnd);
|
|
void __fastcall sound_load_volume(char *value_name, int *value);
|
|
void __fastcall sound_create_primary_buffer(int music_track);
|
|
int __fastcall sound_DirectSoundCreate(GUID *guid, IDirectSound **DS, int always_null);
|
|
void __cdecl sound_cleanup();
|
|
void __fastcall sound_store_volume(char *key, int value);
|
|
void __cdecl music_stop();
|
|
void __fastcall music_start(int nTrack);
|
|
void __fastcall sound_disable_music(bool disable);
|
|
int __fastcall sound_get_or_set_music_volume(int volume);
|
|
int __fastcall sound_get_or_set_sound_volume(int volume);
|
|
|
|
/* data */
|
|
|
|
extern int sound_inf; // weak
|
|
|
|
/* rdata */
|
|
|
|
extern char gbMusicOn; // weak
|
|
extern char gbSoundOn; // weak
|
|
extern char gbDupSounds; // weak
|
|
extern int sgnMusicTrack;
|
|
extern char *sgszMusicTracks[6];
|
|
extern RECT8 QSRect[2]; /* psx version? */ |