Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016 #ifndef __CAENHVOSLIB_H
00017 #define __CAENHVOSLIB_H
00018
00019 #ifdef UNIX
00020 #include <sys/time.h>
00021 #include <sys/types.h>
00022 #include <unistd.h>
00023
00024 #define CAENHVLIB_API
00025
00026 extern void Sleep(unsigned long x);
00027
00028 #else
00029
00030 #include <windows.h>
00031
00032 #ifdef CAENHVLIB
00033 #define CAENHVLIB_API __declspec(dllexport)
00034 #else
00035 #define CAENHVLIB_API
00036 #endif
00037
00038 #endif
00039
00040 #endif