/***************************************************************************/ /* */ /* --- CAEN Engineering Srl - Computing Systems Division --- */ /* */ /* CAENHVOSLIB.H */ /* */ /* */ /* Source code written in ANSI C */ /* */ /* March 2000: - Created. */ /* May 2002: Rel. 2.4 : - Added multiplatform support in the same */ /* files. */ /* */ /***************************************************************************/ #ifndef __CAENHVOSLIB_H #define __CAENHVOSLIB_H #ifdef UNIX // Rel. 2.0 - Linux #include #include #include #define CAENHVLIB_API extern void Sleep(unsigned long x); #else // UNIX #include #ifdef CAENHVLIB #define CAENHVLIB_API __declspec(dllexport) #else #define CAENHVLIB_API #endif #endif // UNIX #endif // __CAENHVOSLIB_H