1 #ifndef __PORTING_TYPES_H 2 #define __PORTING_TYPES_H 3 4 #if _MSC_VER > 1000 5 #pragma once 6 #endif // _MSC_VER 7 8 typedef unsigned short UINT16; 9 10 #endif // #ifndef __PORTING_TYPES_H 11 12 13