Fixed issues found by winapi_check.

diff --git a/dlls/comctl32/commctrl.c b/dlls/comctl32/commctrl.c
index abae86d..175a122 100644
--- a/dlls/comctl32/commctrl.c
+++ b/dlls/comctl32/commctrl.c
@@ -852,6 +852,16 @@
     return S_OK;
 }
 
+/***********************************************************************
+ *		DllInstall (COMCTL32.@)
+ */
+HRESULT WINAPI COMCTL32_DllInstall(BOOL bInstall, LPCWSTR cmdline)
+{
+  FIXME("(%s, %s): stub\n", bInstall?"TRUE":"FALSE", 
+	debugstr_w(cmdline));
+
+  return S_OK;
+}
 
 static int iTrackMax = 0;
 static HWND TrackingList[10];