2001-01-11 23:32:44 +01:00
|
|
|
/*
|
2002-03-20 02:02:15 +01:00
|
|
|
* SHDOCVW - Internet Explorer Web Control
|
|
|
|
* FIXME - stub
|
2001-01-11 23:32:44 +01:00
|
|
|
*
|
2002-03-10 00:29:33 +01:00
|
|
|
* Copyright 2001 John R. Sheets (for CodeWeavers)
|
|
|
|
*
|
|
|
|
* 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
|
2001-01-11 23:32:44 +01:00
|
|
|
*/
|
|
|
|
|
2001-01-26 21:43:40 +01:00
|
|
|
#include <string.h>
|
2001-11-06 23:31:19 +01:00
|
|
|
#include "winreg.h"
|
2001-01-11 23:32:44 +01:00
|
|
|
#include "ole2.h"
|
|
|
|
#include "shlwapi.h"
|
|
|
|
|
|
|
|
#include "shdocvw.h"
|
2002-03-10 00:29:33 +01:00
|
|
|
#include "wine/debug.h"
|
2001-01-11 23:32:44 +01:00
|
|
|
|
2002-03-10 00:29:33 +01:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(shdocvw);
|
2001-01-11 23:32:44 +01:00
|
|
|
|
|
|
|
/***********************************************************************
|
2001-06-21 01:03:14 +02:00
|
|
|
* DllGetVersion (SHDOCVW.113)
|
2001-01-11 23:32:44 +01:00
|
|
|
*/
|
|
|
|
HRESULT WINAPI SHDOCVW_DllGetVersion (DLLVERSIONINFO *pdvi)
|
|
|
|
{
|
|
|
|
FIXME("(void): stub\n");
|
2002-03-20 02:02:15 +01:00
|
|
|
return E_NOTIMPL;
|
2001-01-11 23:32:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*************************************************************************
|
2001-06-21 01:03:14 +02:00
|
|
|
* DllInstall (SHDOCVW.114)
|
2001-01-11 23:32:44 +01:00
|
|
|
*/
|
|
|
|
HRESULT WINAPI SHDOCVW_DllInstall(BOOL bInstall, LPCWSTR cmdline)
|
|
|
|
{
|
2002-03-20 02:02:15 +01:00
|
|
|
FIXME("(%s, %s): stub!\n", bInstall ? "TRUE":"FALSE", debugstr_w(cmdline));
|
2001-01-11 23:32:44 +01:00
|
|
|
|
2002-03-20 02:02:15 +01:00
|
|
|
return E_NOTIMPL;
|
2001-01-11 23:32:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
2001-06-21 01:03:14 +02:00
|
|
|
* DllRegisterServer (SHDOCVW.124)
|
2001-01-11 23:32:44 +01:00
|
|
|
*/
|
|
|
|
HRESULT WINAPI SHDOCVW_DllRegisterServer()
|
|
|
|
{
|
|
|
|
FIXME("(), stub!\n");
|
2002-03-20 02:02:15 +01:00
|
|
|
return E_NOTIMPL;
|
2001-01-11 23:32:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
2001-06-21 01:03:14 +02:00
|
|
|
* DllUnregisterServer (SHDOCVW.127)
|
2001-01-11 23:32:44 +01:00
|
|
|
*/
|
|
|
|
HRESULT WINAPI SHDOCVW_DllUnregisterServer()
|
|
|
|
{
|
|
|
|
FIXME("(), stub!\n");
|
2002-03-20 02:02:15 +01:00
|
|
|
return E_NOTIMPL;
|
2001-01-11 23:32:44 +01:00
|
|
|
}
|