40 lines
919 B
C
40 lines
919 B
C
#ifndef _SND_BINARY_CONVERT_H_
|
|
#define _SND_BINARY_CONVERT_H_
|
|
|
|
/*
|
|
/////////////////////////////////////////////////////////////////
|
|
// SNDBINCT.H Version 1.0 //
|
|
/////////////////////////////////////////////////////////////////
|
|
// Module d'interfacage entre chargement binaire et script //
|
|
/////////////////////////////////////////////////////////////////
|
|
*/
|
|
|
|
#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
|
|
/**************************************/
|
|
|
|
|
|
void SND_fn_vInitBinaryConversionInterface(const char *szFileTitle);
|
|
void SND_fn_vDesInitBinaryConversionInterface(void);
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif /* __cplusplus*/
|
|
|
|
#endif /*_SND_BINARY_CONVERT_H_*/
|