4 * Copyright 1996 Martin von Loewis
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
29 #include "wine/debug.h"
33 #include "wine/winuser16.h"
34 #include "wine/winbase16.h"
37 WINE_DEFAULT_DEBUG_CHANNEL(win);
40 /* WinHelp internal structure */
51 /**********************************************************************
54 BOOL16 WINAPI WinHelp16( HWND16 hWnd, LPCSTR lpHelpFile, UINT16 wCommand,
60 /* We might call WinExec() */
61 ReleaseThunkLock( &mutex_count );
63 if (!(ret = WinHelpA( WIN_Handle32(hWnd), lpHelpFile, wCommand, (DWORD)MapSL(dwData) )))
65 /* try to start the 16-bit winhelp */
66 if (WinExec( "winhelp.exe -x", SW_SHOWNORMAL ) >= 32)
69 ret = WinHelpA( WIN_Handle32(hWnd), lpHelpFile, wCommand, (DWORD)MapSL(dwData) );
73 RestoreThunkLock( mutex_count );
78 /**********************************************************************
81 BOOL WINAPI WinHelpA( HWND hWnd, LPCSTR lpHelpFile, UINT wCommand, ULONG_PTR dwData )
83 static WORD WM_WINHELP = 0;
92 WM_WINHELP=RegisterWindowMessageA("WM_WINHELP");
97 hDest = FindWindowA( "MS_WINHELP", NULL );
99 if(wCommand == HELP_QUIT) return TRUE;
100 if (WinExec ( "winhlp32.exe -x", SW_SHOWNORMAL ) < 32) {
101 ERR("can't start winhlp32.exe -x ?\n");
104 if ( ! ( hDest = FindWindowA ( "MS_WINHELP", NULL ) )) {
105 FIXME("did not find MS_WINHELP (FindWindow() failed, maybe global window handling still unimplemented)\n");
114 case HELP_SETCONTENTS:
116 case HELP_CONTEXTPOPUP:
118 case HELP_HELPONHELP:
124 case HELP_PARTIALKEY:
126 dsize = dwData ? strlen( (LPSTR)dwData )+1: 0;
129 dsize = ((LPMULTIKEYHELPA)dwData)->mkSize;
132 dsize = ((LPHELPWININFOA)dwData)->wStructSize;
135 FIXME("Unknown help command %d\n",wCommand);
139 nlen = strlen(lpHelpFile)+1;
142 size = sizeof(WINHELP) + nlen + dsize;
143 hwh = GlobalAlloc16(0,size);
144 lpwh = GlobalLock16(hwh);
146 lpwh->command = wCommand;
149 strcpy(((char*)lpwh) + sizeof(WINHELP),lpHelpFile);
150 lpwh->ofsFilename = sizeof(WINHELP);
152 lpwh->ofsFilename = 0;
154 memcpy(((char*)lpwh)+sizeof(WINHELP)+nlen,(LPSTR)dwData,dsize);
155 lpwh->ofsData = sizeof(WINHELP)+nlen;
159 return SendMessage16(HWND_16(hDest),WM_WINHELP,HWND_16(hWnd),hwh);
163 /**********************************************************************
164 * WinHelpW (USER32.@)
166 BOOL WINAPI WinHelpW( HWND hWnd, LPCWSTR helpFile, UINT command, ULONG_PTR dwData )
172 if (!helpFile) return WinHelpA( hWnd, NULL, command, dwData );
174 len = WideCharToMultiByte( CP_ACP, 0, helpFile, -1, NULL, 0, NULL, NULL );
175 if ((file = HeapAlloc( GetProcessHeap(), 0, len )))
177 WideCharToMultiByte( CP_ACP, 0, helpFile, -1, file, len, NULL, NULL );
178 ret = WinHelpA( hWnd, file, command, dwData );
179 HeapFree( GetProcessHeap(), 0, file );