#ifndef __OSUTIL_H__ #define __OSUTIL_H__ #if defined(UNIX) || defined(UNIV_LINUX) #include "my_global.h" #include #include #include "os.h" #define MB_OK 0x00000000 #if !defined(__MINMAX_DEFINED) #define __MINMAX_DEFINED #ifndef max #define max(x,y) (((x)>(y))?(x):(y)) #endif #ifndef min #define min(x,y) (((x)<(y))?(x):(y)) #endif #endif #ifdef __cplusplus extern "C" { #endif int GetLastError(); void _splitpath(const char*, char*, char*, char*, char*); void _makepath(char*, const char*, const char*, const char*, const char*); char *_fullpath(char *absPath, const char *relPath, size_t maxLength); BOOL MessageBeep(uint); unsigned long _filelength(int fd); PSZ strupr(PSZ s); PSZ strlwr(PSZ s); typedef size_t FILEPOS; //pedef int FILEHANDLE; // UNIX #ifdef __cplusplus } #endif #else /* WINDOWS */ #include typedef __int64 FILEPOS; //pedef HANDLE FILEHANDLE; // Win32 #endif /* WINDOWS */ #define XSTR(x) ((x)?(x):"") #ifdef __cplusplus extern "C" { #endif my_bool CloseFileHandle(HANDLE h); #ifdef __cplusplus } #endif #endif /* __OSUTIL_H__ */