File indexing completed on 2025-08-03 08:20:41
0001 #ifndef _phenixTypesIncludeProtection_
0002 #define _phenixTypesIncludeProtection_
0003
0004
0005
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
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
0032
0033
0034 #endif
0035
0036
0037