Release 970215
[wine] / misc / w32sys.c
1 /*
2  * W32SYS
3  * helper DLL for Win32s
4  *
5  * Copyright (c) 1996 Anand Kumria
6  */
7
8 #include "windows.h"
9 #include "w32sys.h"
10
11
12 /***********************************************************************
13  *           GetWin32sInfo   (W32SYS.12)
14  */
15 WORD GetWin32sInfo( LPWIN32SINFO lpInfo)
16 {
17     lpInfo->bMajor = 1;
18     lpInfo->bMinor = 3;
19     lpInfo->wBuildNumber = 0;
20     lpInfo->fDebug = FALSE;
21
22     return 0;
23 }