Commit 9bca690d authored by Krzysztof Foltman's avatar Krzysztof Foltman Committed by Alexandre Julliard

Added dummy hhctrl.ocx with stubs of HtmlHelpA and HtmlHelpW.

parent 19fd305a
......@@ -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
......
Makefile
hhctrl.ocx.dbg.c
TOPSRCDIR = @top_srcdir@
TOPOBJDIR = ../..
SRCDIR = @srcdir@
VPATH = @srcdir@
MODULE = hhctrl.ocx
IMPORTS = shell32
C_SRCS = hhctrl.c
@MAKE_DLL_RULES@
### Dependencies:
/*
* 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;
}
14 stdcall HtmlHelpA(ptr ptr long long)
15 stdcall HtmlHelpW(ptr ptr long long)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment