![]() |
TAPs 0.7.7.3
|
00001 /****************************************************************************** 00002 TAPsWindowsDataTypeDef.hpp 00003 00004 Definitions of types most of them defined in windef.h which in turn referred by windows.h 00005 These typedefs are referred in "Windos98 Programming from the Ground Up" 00006 by Herbert Schildt (1998) page 18. 00007 00008 SUKITTI PUNAK (09/16/2004) 00009 UPDATE (09/16/2004) 00010 ******************************************************************************/ 00011 #ifndef TAPs_WINDOWS_DATA_TYPE_DEF_HPP 00012 #define TAPs_WINDOWS_DATA_TYPE_DEF_HPP 00013 00014 BEGIN_NAMESPACE_TAPs 00015 //============================================================================= 00016 namespace WindowsDataTypeDef { 00017 //========================================================================== 00018 // (Basic and common) Windows Data Types 00019 typedef unsigned char BYTE; 00020 typedef unsigned short WORD; 00021 typedef unsigned long DWORD; 00022 typedef int BOOL; 00023 typedef long LONG; 00024 typedef float FLOAT; 00025 typedef int INT; 00026 typedef unsigned int UINT; 00027 } 00028 //============================================================================= 00029 END_NAMESPACE_TAPs 00030 //----------------------------------------------------------------------------- 00031 #endif 00032 //345678901234567890123456789012345678901234567890123456789012345678901234567890 00033 //--+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8