Fixed ttydrv compile when using curses. Cleaned up a few #ifdefs.
[wine/multimedia.git] / dlls / win32s / w32sys.c
blob43b1b485b2c805647cab977e4b87fc8caa4d9514
1 /*
2 * W32SYS
3 * helper DLL for Win32s
5 * Copyright (c) 1996 Anand Kumria
6 */
8 #include "windef.h"
9 #include "w32sys.h"
11 #include "debugtools.h"
13 DEFAULT_DEBUG_CHANNEL(dll)
15 /***********************************************************************
16 * GetWin32sInfo (W32SYS.12)
17 * RETURNS
18 * 0 on success, 1 on failure
20 WORD WINAPI GetWin32sInfo16(
21 LPWIN32SINFO lpInfo /* [out] Win32S special information */
22 ) {
23 lpInfo->bMajor = 1;
24 lpInfo->bMinor = 3;
25 lpInfo->wBuildNumber = 0;
26 lpInfo->fDebug = FALSE;
28 return 0;
31 /***********************************************************************
32 * GetW32SysVersion16 (W32SYS.5)
34 WORD WINAPI GetW32SysVersion16(void)
36 return 0x100;
39 /***********************************************************************
40 * GetPEResourceTable (W32SYS.7)
41 * retrieves the resourcetable from the passed filedescriptor
42 * RETURNS
43 * dunno what.
45 WORD WINAPI GetPEResourceTable16(
46 HFILE16 hf /* [in] filedescriptor to opened executeable */
47 ) {
48 return 0;
51 DWORD WINAPI LoadPeResource16(WORD x,SEGPTR y) {
52 FIXME("(0x%04x,0x%08lx),stub!\n",x,y);
53 return 0;