mirror of
https://github.com/reactos/wine.git
synced 2024-11-26 13:10:28 +00:00
857eb39206
scheme.
20 lines
297 B
C
20 lines
297 B
C
/*
|
|
* W32SYS
|
|
*
|
|
* Copyright (c) 1996 Anand Kumria
|
|
*/
|
|
|
|
#ifndef __WINE_W32SYS_H
|
|
#define __WINE_W32SYS_H
|
|
|
|
#include "windef.h"
|
|
|
|
typedef struct _WIN32SINFO {
|
|
BYTE bMajor;
|
|
BYTE bMinor;
|
|
WORD wBuildNumber;
|
|
BOOL16 fDebug;
|
|
} WIN32SINFO, *LPWIN32SINFO;
|
|
|
|
#endif /* __WINE_W32SYS_H */
|