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