Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-03 08:20:41

0001 #ifndef _phenixTypesIncludeProtection_
0002 #define _phenixTypesIncludeProtection_
0003 /* 
0004 ** __DECCXX is defined by the DEC compiler on the alpha.  The definitions
0005 ** here deal with the differences in sizes between 32 and 64 bit machines.
0006 */
0007 
0008 
0009 #ifdef __DECCXX
0010 typedef unsigned int PHDWORD;
0011 typedef unsigned short SWORD;
0012 typedef unsigned char BYTE;
0013 typedef unsigned int UINT;
0014 #else
0015 
0016 /* #if defined(_WIN32_WINNT) */
0017 #ifdef WIN32
0018 typedef unsigned long   PHDWORD;
0019 #else
0020 typedef unsigned int    PHDWORD;
0021 #endif
0022 
0023 
0024 typedef unsigned short  SWORD;
0025 typedef unsigned char   BYTE;
0026 #ifndef VXWORKS
0027 typedef unsigned int    UINT;
0028 #else
0029 #include <types/vxTypesOld.h>
0030 #endif
0031 #endif /* __DECCXX */
0032 
0033 
0034 #endif 
0035 
0036      /* end of ifndef _phenixTypesIncludeProtection_ */
0037