43 lines
933 B
C
43 lines
933 B
C
#ifndef _SNDLD_HY_H_
|
|
#define _SNDLD_HY_H_
|
|
|
|
//***************************************************************
|
|
//* *
|
|
//* SNDLD_S.H Version 1.0 *
|
|
//* *
|
|
//* Private sound data load&reference functions *
|
|
//* Binary version *
|
|
//* *
|
|
//***************************************************************
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif // __cplusplus
|
|
|
|
//**************************************
|
|
#undef CPA_EXPORT
|
|
#if defined(CPA_WANTS_IMPORT)
|
|
#define CPA_EXPORT __declspec(dllimport)
|
|
#elif defined(CPA_WANTS_EXPORT)
|
|
#define CPA_EXPORT __declspec(dllexport)
|
|
#else
|
|
#define CPA_EXPORT
|
|
#endif
|
|
//**************************************
|
|
|
|
|
|
|
|
#ifdef SND_HYBRID_VERSION
|
|
|
|
CPA_EXPORT SndBool SND_fn_bDesInitDataLoadSnd(void);
|
|
CPA_EXPORT const char * SND_fn_czGetProjectTitle(void);
|
|
|
|
#endif //SND_HYBRID_VERSION
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif // __cplusplus
|
|
|
|
#endif //_SNDLD_HY_H_
|