Added a framework for testing CreateProcess and a few tests.
[wine] / dlls / shdocvw / api.c
1 /*
2  *      SHDOCVW - Internet Explorer Web Control
3  *      FIXME - stub
4  *
5  * Copyright 2001 John R. Sheets (for CodeWeavers)
6  *
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.
11  *
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.
16  *
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
20  */
21
22 #include <string.h>
23 #include "winreg.h"
24 #include "ole2.h"
25 #include "shlwapi.h"
26
27 #include "shdocvw.h"
28 #include "wine/debug.h"
29
30 WINE_DEFAULT_DEBUG_CHANNEL(shdocvw);
31
32 /***********************************************************************
33  *              DllGetVersion (SHDOCVW.113)
34  */
35 HRESULT WINAPI SHDOCVW_DllGetVersion (DLLVERSIONINFO *pdvi)
36 {
37     FIXME("(void): stub\n");
38     return E_NOTIMPL;
39 }
40
41 /*************************************************************************
42  *              DllInstall (SHDOCVW.114)
43  */
44 HRESULT WINAPI SHDOCVW_DllInstall(BOOL bInstall, LPCWSTR cmdline)
45 {
46     FIXME("(%s, %s): stub!\n", bInstall ? "TRUE":"FALSE", debugstr_w(cmdline));
47
48     return E_NOTIMPL;
49 }
50
51 /***********************************************************************
52  *              DllRegisterServer (SHDOCVW.124)
53  */
54 HRESULT WINAPI SHDOCVW_DllRegisterServer()
55 {
56     FIXME("(), stub!\n");
57     return E_NOTIMPL;
58 }
59
60 /***********************************************************************
61  *              DllUnregisterServer (SHDOCVW.127)
62  */
63 HRESULT WINAPI SHDOCVW_DllUnregisterServer()
64 {
65     FIXME("(), stub!\n");
66     return E_NOTIMPL;
67 }