2 * SHDOCVW - Internet Explorer Web Control
4 * Copyright 2001 John R. Sheets (for CodeWeavers)
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
28 #include "wine/debug.h"
30 WINE_DEFAULT_DEBUG_CHANNEL(shdocvw);
32 /***********************************************************************
33 * DllCanUnloadNow (SHDOCVW.@)
35 HRESULT WINAPI SHDOCVW_DllCanUnloadNow(void)
37 FIXME("(void): stub\n");
42 /*************************************************************************
43 * DllGetClassObject (SHDOCVW.@)
45 HRESULT WINAPI SHDOCVW_DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID *ppv)
49 if (IsEqualGUID(&IID_IClassFactory, riid))
51 /* Pass back our shdocvw class factory */
52 *ppv = (LPVOID)&SHDOCVW_ClassFactory;
53 IClassFactory_AddRef((IClassFactory*)&SHDOCVW_ClassFactory);
58 return CLASS_E_CLASSNOTAVAILABLE;
61 /***********************************************************************
62 * DllGetVersion (SHDOCVW.@)
64 HRESULT WINAPI SHDOCVW_DllGetVersion (DLLVERSIONINFO *pdvi)
66 FIXME("(void): stub\n");
70 /*************************************************************************
71 * DllInstall (SHDOCVW.@)
73 HRESULT WINAPI SHDOCVW_DllInstall(BOOL bInstall, LPCWSTR cmdline)
75 FIXME("(%s, %s): stub!\n", bInstall ? "TRUE":"FALSE", debugstr_w(cmdline));
80 /***********************************************************************
81 * DllRegisterServer (SHDOCVW.@)
83 HRESULT WINAPI SHDOCVW_DllRegisterServer()
89 /***********************************************************************
90 * DllUnregisterServer (SHDOCVW.@)
92 HRESULT WINAPI SHDOCVW_DllUnregisterServer()