Release 960712
[wine] / win32 / newfns.c
1 /*
2  * Win32 miscellaneous functions
3  *
4  * Copyright 1995 Thomas Sandford (tdgsandf@prds-grn.demon.co.uk)
5  */
6
7 /* Misc. new functions - they should be moved into appropriate files
8 at a later date. */
9
10 #include <stdio.h>
11 #include "windows.h"
12 #include "winerror.h"
13 #include "kernel32.h"
14 #include "stddebug.h"
15 #include "debug.h"
16
17 /***********************************************************************
18  *          WinHelpA           (USER32.578)
19  */
20 BOOL WIN32_WinHelpA(HWND hWnd,LPCSTR lpszHelp,UINT uCommand, DWORD dwData)
21 {
22         /* Should do parameter conversion here, but WinHelp is not working,
23            anyways */
24         return WinHelp(hWnd,lpszHelp,uCommand,dwData);
25 }
26
27 HHOOK SetWindowsHookEx32A(int HookId, HOOKPROC hookfn, HINSTANCE hModule,
28                                 DWORD ThreadId)
29
30 {
31         /* Stub for now */
32         fprintf(stdnimp, "WIN32_SetWindowsHookEx Stub called!\n");
33         
34         return (HHOOK) NULL;
35 }