Revision 4dbf0ec391b877f21402aed9e8351fe8f7468d14 authored by D019 Rig on 19 December 2019, 23:25:22 UTC, committed by D019 Rig on 19 December 2019, 23:25:22 UTC
1 parent 4cac1d4
wintypes.h
//=====================================================================================================================
//
// wintypes.h : Some typical MS Windows typedefs that are used in the readcxdata/editcxdata modules...
//
// ****** FOR DESCRIPTION, REVISION HISTORY, ETC, SEE IMPLEMENTATION FILE ******
//
//=====================================================================================================================
#if !defined(WINTYPES_H__INCLUDED_)
#define WINTYPES_H__INCLUDED_
typedef unsigned int DWORD;
typedef unsigned int UINT;
typedef unsigned short WORD;
typedef unsigned short USHORT;
typedef unsigned char BYTE;
typedef char CHAR;
typedef short SHORT;
typedef int BOOL;
typedef int INT;
typedef void VOID;
#define TRUE 1
#define FALSE 0
#define MAKELONG(a, b) ((INT) (((WORD) (a)) | (((DWORD) ((WORD) (b))) << 16)) )
#endif // !defined(WINTYPES_H__INCLUDED_)

Computing file changes ...