Files
dusklight/include/Z2AudioLib/Z2SoundMgr/Z2SoundMgr.h
T
LC 1ef592dd6e Z2AudioLib: Migrate declarations out of functions.h to respective files (#96)
Removes the strong dependency on a single header file and moves
declarations to their respective header file.

This allows for making dependencies explicit in cpp files and other
headers, and also makes it much easier to track where everything related
to a particular component is.

This change also creates a few header files that previously didn't
exist, making it much nicer for people implementing things, as they
won't need to create the header file, it'll just be there ready to go.

Ideally functions.h wouldn't even be a thing, as this header adds a lot
of preprocessing overhead due to its size, and will continue to grow
significantly larger over the lifespan of the project, which can also
impact the performance of editors that do dependency lookups and
context-aware syntax highlighting.
2021-01-25 12:57:46 -05:00

28 lines
678 B
C++

#ifndef Z2SOUNDMGR_H_
#define Z2SOUNDMGR_H_
class Z2SoundMgr;
extern "C" {
void resetFilterAll__10Z2SoundMgrFv(void);
void func_802A9EE8(void);
void seqCallback(void);
void Z2SoundMgr_NS_calc(void);
void Z2SoundMgr_NS_ctor(void);
void Z2SoundMgr_NS_framework(void);
void Z2SoundMgr_NS_initParams(void);
void Z2SoundMgr_NS_isPlayingSoundID(void);
void Z2SoundMgr_NS_mixOut(void);
void Z2SoundMgr_NS_multiVolumeSoundID(void);
void Z2SoundMgr_NS_pauseAllGameSound(Z2SoundMgr* p0, bool p1);
void Z2SoundMgr_NS_setFilterOff(void);
void Z2SoundMgr_NS_setIIR(void);
void Z2SoundMgr_NS_stop(void);
void Z2SoundMgr_NS_stopSoundID(void);
void Z2SoundMgr_NS_stopSync(void);
};
#endif