Release 960428
[wine/multimedia.git] / win32 / newfns.c
blob31bb179ca962f05dc83d7e727ce0e3b543572293
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);