debug_(snoop|relay)_(exclude|include)list => fixed allocation, modules
[wine] / misc / w32sys.c
1 /*
2  * W32SYS
3  * helper DLL for Win32s
4  *
5  * Copyright (c) 1996 Anand Kumria
6  */
7
8 #include "windef.h"
9 #include "w32sys.h"
10
11 /***********************************************************************
12  *           GetWin32sInfo   (W32SYS.12)
13  * RETURNS
14  *  0 on success, 1 on failure
15  */
16 WORD WINAPI GetWin32sInfo16(
17         LPWIN32SINFO lpInfo     /* [out] Win32S special information */
18 ) {
19     lpInfo->bMajor = 1;
20     lpInfo->bMinor = 3;
21     lpInfo->wBuildNumber = 0;
22     lpInfo->fDebug = FALSE;
23
24     return 0;
25 }
26
27 /***********************************************************************
28  *            GetW32SysVersion16  (W32SYS.5)
29  */
30 void WINAPI GetW32SysVersion16(void)
31 {
32     return 0x100;
33 }
34
35 /***********************************************************************
36  *           GetPEResourceTable   (W32SYS.7)
37  * retrieves the resourcetable from the passed filedescriptor
38  * RETURNS
39  *      dunno what.
40  */
41 WORD WINAPI GetPEResourceTable16(
42         HFILE16 hf              /* [in] filedescriptor to opened executeable */
43 ) {
44         return 0;
45 }