mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-24 15:00:55 -04:00
3b742025db
- Fix struct/class forward declaration mismatches (JAIAudience, JASTrack) causing different MSVC mangled names and unresolved symbols - Add jsystem_stubs.cpp with stubs for JASHeap, JASVoiceBank, J3DShapeTable, JAUSection, JHICommBuf, HIO/HIO2, JOR
18 lines
272 B
C
18 lines
272 B
C
#ifndef _SRC_EXTRAS_H_
|
|
#define _SRC_EXTRAS_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifndef _MSC_VER
|
|
int strnicmp(const char* str1, const char* str2, int n);
|
|
int stricmp(const char* str1, const char* str2);
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // _SRC_EXTRAS_H_
|