mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-06-12 21:14:38 -04:00
1ef592dd6e
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.
15 lines
325 B
C
15 lines
325 B
C
#ifndef JAISEQMGR_H_
|
|
#define JAISEQMGR_H_
|
|
|
|
// Additional symbols needed for JAISeqMgr
|
|
extern "C" {
|
|
void JAISeqMgr_NS_calc(void);
|
|
void JAISeqMgr_NS_mixOut(void);
|
|
void JAISeqMgr_NS_startSound(void);
|
|
void JAISeqMgr_NS_stopSoundID(void);
|
|
void JAISeqMgr_NS_stop(void);
|
|
void JAISeqMgr_NS_stop_X1_(void);
|
|
}
|
|
|
|
#endif // JAISEQMGR_H_
|