4 * Copyright 1996 Martin von Loewis
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
31 #include "wine/debug.h"
38 WINE_DEFAULT_DEBUG_CHANNEL(win);
40 /* Wine doesn't use the way WinHelp API sends information in Windows, because:
41 * 1/ it's not consistent across Win9x, NT...
42 * 2/ NT implementation is not yet fully understood (and includes some shared
44 * 3/ uses a dynamically allocated message number (WM_WINHELP), which
47 * So we use (for now) the simple protocol:
48 * 1/ it's based on copy data
49 * 2/ we tag the message with a magic number, to make it a bit more robust
50 * (even if it's not 100% safe)
51 * 3/ data structure (WINHELP) has the same layout that the one used on Win95.
52 * This doesn't bring much, except not going to far away from real
55 * This means anyway that native winhelp.exe and winhlp32.exe cannot be
56 * called/manipulated from WinHelp API.
68 /* magic number for this message:
69 * aide means help is French ;-)
72 #define WINHELP_MAGIC 0xA1DE505
74 /**********************************************************************
77 BOOL WINAPI WinHelpA( HWND hWnd, LPCSTR lpHelpFile, UINT wCommand, ULONG_PTR dwData )
81 int size, dsize, nlen;
84 hDest = FindWindowA("MS_WINHELP", NULL);
87 if (wCommand == HELP_QUIT) return TRUE;
88 if (WinExec("winhlp32.exe -x", SW_SHOWNORMAL) < 32)
90 ERR("can't start winhlp32.exe -x ?\n");
93 if (!(hDest = FindWindowA("MS_WINHELP", NULL)))
95 FIXME("Did not find a MS_WINHELP Window\n");
103 case HELP_SETCONTENTS:
105 case HELP_CONTEXTPOPUP:
107 case HELP_HELPONHELP:
113 case HELP_PARTIALKEY:
115 dsize = dwData ? strlen((LPSTR)dwData) + 1 : 0;
118 dsize = ((LPMULTIKEYHELPA)dwData)->mkSize;
121 dsize = ((LPHELPWININFOA)dwData)->wStructSize;
124 FIXME("Unknown help command %d\n", wCommand);
128 nlen = strlen(lpHelpFile) + 1;
131 size = sizeof(WINHELP) + nlen + dsize;
133 lpwh = HeapAlloc(GetProcessHeap(), 0, size);
134 if (!lpwh) return FALSE;
136 cds.dwData = WINHELP_MAGIC;
138 cds.lpData = (void*)lpwh;
141 lpwh->command = wCommand;
145 strcpy(((char*)lpwh) + sizeof(WINHELP), lpHelpFile);
146 lpwh->ofsFilename = sizeof(WINHELP);
148 lpwh->ofsFilename = 0;
151 memcpy(((char*)lpwh) + sizeof(WINHELP) + nlen, (LPSTR)dwData, dsize);
152 lpwh->ofsData = sizeof(WINHELP) + nlen;
155 WINE_TRACE("Sending[%u]: cmd=%u data=%08x fn=%s\n",
156 lpwh->size, lpwh->command, lpwh->data,
157 lpwh->ofsFilename ? (LPSTR)lpwh + lpwh->ofsFilename : "");
159 return SendMessageA(hDest, WM_COPYDATA, (WPARAM)hWnd, (LPARAM)&cds);
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 );