New file. Seperate implementation of the shellview background
[wine/dcerpc.git] / misc / w32sys.c
blobc2f6b811fac11499ce0480c4aa1fe8f58a4ab822
1 /*
2 * W32SYS
3 * helper DLL for Win32s
5 * Copyright (c) 1996 Anand Kumria
6 */
8 #include "windef.h"
9 #include "w32sys.h"
11 /***********************************************************************
12 * GetWin32sInfo (W32SYS.12)
13 * RETURNS
14 * 0 on success, 1 on failure
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;
24 return 0;
27 /***********************************************************************
28 * GetW32SysVersion16 (W32SYS.5)
30 WORD WINAPI GetW32SysVersion16(void)
32 return 0x100;
35 /***********************************************************************
36 * GetPEResourceTable (W32SYS.7)
37 * retrieves the resourcetable from the passed filedescriptor
38 * RETURNS
39 * dunno what.
41 WORD WINAPI GetPEResourceTable16(
42 HFILE16 hf /* [in] filedescriptor to opened executeable */
43 ) {
44 return 0;