Writes to stdout and VGA_WriteChars routine now update both VGA
[wine/wine64.git] / dlls / shdocvw / api.c
blobc0021ae06543c21ba1e0b26144163213733121bd
1 /*
2 * SHDOCVW - Internet Explorer Web Control
3 * FIXME - stub
5 * Copyright 2001 John R. Sheets (for CodeWeavers)
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 #include <string.h>
23 #include "winreg.h"
24 #include "ole2.h"
25 #include "shlwapi.h"
27 #include "shdocvw.h"
28 #include "wine/debug.h"
30 WINE_DEFAULT_DEBUG_CHANNEL(shdocvw);
32 /***********************************************************************
33 * DllGetVersion (SHDOCVW.113)
35 HRESULT WINAPI SHDOCVW_DllGetVersion (DLLVERSIONINFO *pdvi)
37 FIXME("(void): stub\n");
38 return E_NOTIMPL;
41 /*************************************************************************
42 * DllInstall (SHDOCVW.114)
44 HRESULT WINAPI SHDOCVW_DllInstall(BOOL bInstall, LPCWSTR cmdline)
46 FIXME("(%s, %s): stub!\n", bInstall ? "TRUE":"FALSE", debugstr_w(cmdline));
48 return E_NOTIMPL;
51 /***********************************************************************
52 * DllRegisterServer (SHDOCVW.124)
54 HRESULT WINAPI SHDOCVW_DllRegisterServer()
56 FIXME("(), stub!\n");
57 return E_NOTIMPL;
60 /***********************************************************************
61 * DllUnregisterServer (SHDOCVW.127)
63 HRESULT WINAPI SHDOCVW_DllUnregisterServer()
65 FIXME("(), stub!\n");
66 return E_NOTIMPL;