18 lines
238 B
C
18 lines
238 B
C
#if defined(__DLL_MEAN__)
|
|
#define DLL_SPEC __declspec(dllexport)
|
|
#else
|
|
#define DLL_SPEC __declspec(dllimport)
|
|
#endif
|
|
|
|
|
|
#if defined __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
double DLL_SPEC mean(double, double);
|
|
|
|
#if defined __cplusplus
|
|
}
|
|
#endif
|