mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
404 B
29 lines
404 B
typedef BOOL F;
|
|
#define fFalse 0
|
|
#define fTrue 1
|
|
|
|
typedef UCHAR CH;
|
|
|
|
#ifndef PM
|
|
typedef CH * SZ;
|
|
#endif
|
|
|
|
typedef VOID * PV;
|
|
#define pvNil ((PV) 0)
|
|
|
|
#define hNil ((HANDLE) 0)
|
|
|
|
|
|
#ifdef PM
|
|
typedef POINTL PT;
|
|
typedef HPS CVS;
|
|
#endif
|
|
#ifdef WIN
|
|
typedef MPOINT PT;
|
|
typedef HDC CVS;
|
|
#ifndef _ALPHA_
|
|
typedef LPSTR PSZ; // MAY CAUSE PROBLEMS ON ALPHA
|
|
#endif
|
|
typedef HANDLE HAB;
|
|
#define EXPENTRY APIENTRY
|
|
#endif
|