18 lines
270 B
C
18 lines
270 B
C
|
/*
|
||
|
* W32SYS
|
||
|
*
|
||
|
* Copyright (c) 1996 Anand Kumria
|
||
|
*/
|
||
|
|
||
|
#ifndef __WINE__W32SYS_H
|
||
|
#define __WINE__W32SYS_H
|
||
|
|
||
|
typedef struct _WIN32SINFO {
|
||
|
BYTE bMajor;
|
||
|
BYTE bMinor;
|
||
|
WORD wBuildNumber;
|
||
|
BOOL fDebug;
|
||
|
} WIN32SINFO, *LPWIN32SINFO;
|
||
|
|
||
|
#endif /* __WINE_W32SYS_H */
|