34 lines
728 B
C
34 lines
728 B
C
#ifndef _SNDRND_H_
|
|
#define _SNDRND_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif /* __cplusplus*/
|
|
|
|
/*
|
|
//////////////////////////////////////////////////////
|
|
// SNDRND.H - Librairie SOUNDxd version 2.0 //
|
|
//////////////////////////////////////////////////////
|
|
//////////////////////////////////////////////////////
|
|
*/
|
|
|
|
#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
|
|
/****************************************/
|
|
|
|
CPA_EXPORT SndReal SND_fn_rGetRandomSnd(SndReal max);
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif /* __cplusplus*/
|
|
|
|
#endif /*_SNDRND_H_*/
|