Added dummy hhctrl.ocx with stubs of HtmlHelpA and HtmlHelpW.
This commit is contained in:
parent
19fd305a7e
commit
9bca690d6a
|
@ -1545,6 +1545,7 @@ dlls/gdi/Makefile
|
|||
dlls/gdi/tests/Makefile
|
||||
dlls/glu32/Makefile
|
||||
dlls/glut32/Makefile
|
||||
dlls/hhctrl.ocx/Makefile
|
||||
dlls/iccvid/Makefile
|
||||
dlls/icmp/Makefile
|
||||
dlls/ifsmgr.vxd/Makefile
|
||||
|
|
|
@ -53,6 +53,7 @@ BASEDIRS = \
|
|||
dswave \
|
||||
dxdiagn \
|
||||
gdi \
|
||||
hhctrl.ocx \
|
||||
iccvid \
|
||||
icmp \
|
||||
ifsmgr.vxd \
|
||||
|
@ -269,6 +270,7 @@ SYMLINKS_SO = \
|
|||
dswave.dll.so \
|
||||
dxdiagn.dll.so \
|
||||
gdi32.dll.so \
|
||||
hhctrl.ocx.so \
|
||||
iccvid.dll.so \
|
||||
icmp.dll.so \
|
||||
ifsmgr.vxd.so \
|
||||
|
@ -529,6 +531,9 @@ glu32.dll.so: glu32/glu32.dll.so
|
|||
glut32.dll.so: glut32/glut32.dll.so
|
||||
$(RM) $@ && $(LN_S) glut32/glut32.dll.so $@
|
||||
|
||||
hhctrl.ocx.so: hhctrl.ocx/hhctrl.ocx.so
|
||||
$(RM) $@ && $(LN_S) hhctrl.ocx/hhctrl.ocx.so $@
|
||||
|
||||
iccvid.dll.so: iccvid/iccvid.dll.so
|
||||
$(RM) $@ && $(LN_S) iccvid/iccvid.dll.so $@
|
||||
|
||||
|
@ -1820,6 +1825,7 @@ dxdiagn/dxdiagn.dll.so: dxdiagn
|
|||
gdi/gdi32.dll.so: gdi
|
||||
glu32/glu32.dll.so: glu32
|
||||
glut32/glut32.dll.so: glut32
|
||||
hhctrl.ocx/hhctrl.ocx.so: hhctrl.ocx
|
||||
iccvid/iccvid.dll.so: iccvid
|
||||
icmp/icmp.dll.so: icmp
|
||||
ifsmgr.vxd/ifsmgr.vxd.so: ifsmgr.vxd
|
||||
|
|
|
@ -0,0 +1,2 @@
|
|||
Makefile
|
||||
hhctrl.ocx.dbg.c
|
|
@ -0,0 +1,12 @@
|
|||
TOPSRCDIR = @top_srcdir@
|
||||
TOPOBJDIR = ../..
|
||||
SRCDIR = @srcdir@
|
||||
VPATH = @srcdir@
|
||||
MODULE = hhctrl.ocx
|
||||
IMPORTS = shell32
|
||||
|
||||
C_SRCS = hhctrl.c
|
||||
|
||||
@MAKE_DLL_RULES@
|
||||
|
||||
### Dependencies:
|
|
@ -0,0 +1,43 @@
|
|||
/*
|
||||
* hhctrl implementation
|
||||
*
|
||||
* Copyright 2004 Krzysztof Foltman
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2.1 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
#include <stdarg.h>
|
||||
#include <string.h>
|
||||
#include "windef.h"
|
||||
#include "winbase.h"
|
||||
#include "wingdi.h"
|
||||
#include "winuser.h"
|
||||
#include "wine/debug.h"
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(htmlhelp);
|
||||
|
||||
HWND WINAPI HtmlHelpA(HWND hwndCaller, LPCSTR pszFile,
|
||||
UINT uCommand, DWORD dwData)
|
||||
{
|
||||
FIXME("stub\n");
|
||||
return 0;
|
||||
}
|
||||
|
||||
HWND WINAPI HtmlHelpW(HWND hwndCaller, LPCWSTR pszFile,
|
||||
UINT uCommand, DWORD dwData)
|
||||
{
|
||||
FIXME("stub\n");
|
||||
return 0;
|
||||
}
|
|
@ -0,0 +1,2 @@
|
|||
14 stdcall HtmlHelpA(ptr ptr long long)
|
||||
15 stdcall HtmlHelpW(ptr ptr long long)
|
Loading…
Reference in New Issue