Added hh.exe.

diff --git a/programs/Makefile.in b/programs/Makefile.in
index 546b85a..94bc1dc 100644
--- a/programs/Makefile.in
+++ b/programs/Makefile.in
@@ -11,6 +11,7 @@
 	cmdlgtst \
 	control \
 	expand \
+	hh \
 	msiexec \
 	notepad \
 	progman \
@@ -43,6 +44,7 @@
 	clock \
 	control \
 	expand \
+	hh \
 	msiexec \
 	notepad \
 	progman \
@@ -95,6 +97,7 @@
 	cmdlgtst.exe$(DLLEXT) \
 	control.exe$(DLLEXT) \
 	expand.exe$(DLLEXT) \
+	hh.exe$(DLLEXT) \
 	icinfo.exe$(DLLEXT) \
 	msiexec.exe$(DLLEXT) \
 	notepad.exe$(DLLEXT) \
@@ -183,6 +186,9 @@
 expand.exe$(DLLEXT): expand/expand.exe$(DLLEXT)
 	$(RM) $@ && $(LN_S) expand/expand.exe$(DLLEXT) $@
 
+hh.exe$(DLLEXT): hh/hh.exe$(DLLEXT)
+	$(RM) $@ && $(LN_S) hh/hh.exe$(DLLEXT) $@
+
 icinfo.exe$(DLLEXT): avitools/icinfo.exe$(DLLEXT)
 	$(RM) $@ && $(LN_S) avitools/icinfo.exe$(DLLEXT) $@
 
@@ -267,6 +273,7 @@
 cmdlgtst/cmdlgtst.exe$(DLLEXT): cmdlgtst
 control/control.exe$(DLLEXT): control
 expand/expand.exe$(DLLEXT): expand
+hh/hh.exe$(DLLEXT): hh
 avitools/icinfo.exe$(DLLEXT): avitools
 msiexec/msiexec.exe$(DLLEXT): msiexec
 notepad/notepad.exe$(DLLEXT): notepad
diff --git a/programs/hh/.cvsignore b/programs/hh/.cvsignore
new file mode 100644
index 0000000..d6f144e
--- /dev/null
+++ b/programs/hh/.cvsignore
@@ -0,0 +1,2 @@
+Makefile
+hh.exe.dbg.c
diff --git a/programs/hh/Makefile.in b/programs/hh/Makefile.in
new file mode 100644
index 0000000..27ec0de
--- /dev/null
+++ b/programs/hh/Makefile.in
@@ -0,0 +1,14 @@
+TOPSRCDIR = @top_srcdir@
+TOPOBJDIR = ../..
+SRCDIR    = @srcdir@
+VPATH     = @srcdir@
+MODULE    = hh.exe
+APPMODE   = -mwindows
+IMPORTS   = kernel32
+
+C_SRCS = \
+	main.c
+
+@MAKE_PROG_RULES@
+
+### Dependencies:
diff --git a/programs/hh/main.c b/programs/hh/main.c
new file mode 100644
index 0000000..494c6ce
--- /dev/null
+++ b/programs/hh/main.c
@@ -0,0 +1,33 @@
+/*
+ * Copyright 2004 Jacek Caban
+ *
+ * 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 <windows.h>
+
+typedef int WINAPI DOWINMAIN(HMODULE hMod, LPSTR cmdline);
+
+int WINAPI WinMain(HINSTANCE hInst, HINSTANCE hPrevInst, LPSTR cmdline, int cmdshow)
+{
+
+    HMODULE hModule;
+    DOWINMAIN *doWinMain;
+
+    hModule = LoadLibrary("hhctrl.ocx");
+    doWinMain = GetProcAddress(hModule, "doWinMain");
+
+    return doWinMain(hInst, cmdline); 
+}