#ifndef _hosttype_H #define _hosttype_H /** NI CONFIDENTIAL © Copyright 1990-2000 by National Instruments Corp. All rights reserved. @author brian.powell, greg.richardson @file hosttype.h @brief Host specific definitions, etc. */ #ifdef DefineHeaderRCSId static char rcsid_hosttype[] = "$Id: //lvdist/dev/plat/win/cintools/hosttype.h#3 $"; #endif #if Mac #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #if OpSystem != kMacCarbon #define QDG(qdField) (qd.qdField) #endif #endif /* Mac */ #if OpenStep #include #endif /* OpenStep */ #if Unix #if AlphaPtr32 #pragma pointer_size 64 #endif #include #include #if XWindows #include #include #endif /* XWindows */ #if AlphaPtr32 #pragma pointer_size 32 #endif #endif /* Unix */ #if WindowSystem == kBeWS #include #include #include #endif /* kBeWS */ #if MSWin #ifdef TRUE #undef TRUE #endif #ifdef FALSE #undef FALSE #endif #define _WIN32_WINNT 0x0400 #include #pragma warning (disable : 4001) /* nonstandard extension 'single line comment' was used */ #ifdef TRUE #undef TRUE #endif #define TRUE 1L #ifdef FALSE #undef FALSE #endif #define FALSE 0L #ifdef VCI_RTX #if VCI_RTX #include #include "rtxsyscall.h" #include #endif #endif /* defined VCI_RTX */ #endif /* MSWin */ #endif /* _hosttype_H */