winex11: Add an implementation for the PutImage entry point.
[wine] / dlls / vbscript / vbscript_main.c
1 /*
2  * Copyright 2011 Jacek Caban for CodeWeavers
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
17  */
18
19 #include "config.h"
20
21 #include <stdarg.h>
22
23 #define COBJMACROS
24
25 #include "windef.h"
26 #include "winbase.h"
27 #include "initguid.h"
28
29 #include "ole2.h"
30 #include "rpcproxy.h"
31 #include "vbscript_classes.h"
32
33 #include "wine/debug.h"
34
35 WINE_DEFAULT_DEBUG_CHANNEL(vbscript);
36
37 static HINSTANCE vbscript_hinstance;
38
39 static HRESULT WINAPI VBScriptFactory_CreateInstance(IClassFactory *iface, IUnknown *pUnkOuter, REFIID riid, void **ppv)
40 {
41     FIXME("(%p %s %p)\n", pUnkOuter, debugstr_guid(riid), ppv);
42     return E_NOINTERFACE;
43 }
44
45 static HRESULT WINAPI ClassFactory_QueryInterface(IClassFactory *iface, REFIID riid, void **ppv)
46 {
47     *ppv = NULL;
48
49     if(IsEqualGUID(&IID_IUnknown, riid)) {
50         TRACE("(%p)->(IID_IUnknown %p)\n", iface, ppv);
51         *ppv = iface;
52     }else if(IsEqualGUID(&IID_IClassFactory, riid)) {
53         TRACE("(%p)->(IID_IClassFactory %p)\n", iface, ppv);
54         *ppv = iface;
55     }
56
57     if(*ppv) {
58         IUnknown_AddRef((IUnknown*)*ppv);
59         return S_OK;
60     }
61
62     FIXME("(%p)->(%s %p)\n", iface, debugstr_guid(riid), ppv);
63     return E_NOINTERFACE;
64 }
65
66 static ULONG WINAPI ClassFactory_AddRef(IClassFactory *iface)
67 {
68     TRACE("(%p)\n", iface);
69     return 2;
70 }
71
72 static ULONG WINAPI ClassFactory_Release(IClassFactory *iface)
73 {
74     TRACE("(%p)\n", iface);
75     return 1;
76 }
77
78 static HRESULT WINAPI ClassFactory_LockServer(IClassFactory *iface, BOOL fLock)
79 {
80     TRACE("(%p)->(%x)\n", iface, fLock);
81     return S_OK;
82 }
83
84 static const IClassFactoryVtbl VBScriptFactoryVtbl = {
85     ClassFactory_QueryInterface,
86     ClassFactory_AddRef,
87     ClassFactory_Release,
88     VBScriptFactory_CreateInstance,
89     ClassFactory_LockServer
90 };
91
92 static IClassFactory VBScriptFactory = { &VBScriptFactoryVtbl };
93
94 /******************************************************************
95  *              DllMain (vbscript.@)
96  */
97 BOOL WINAPI DllMain(HINSTANCE hInstDLL, DWORD fdwReason, LPVOID lpv)
98 {
99     TRACE("(%p %d %p)\n", hInstDLL, fdwReason, lpv);
100
101     switch(fdwReason)
102     {
103     case DLL_WINE_PREATTACH:
104         return FALSE;  /* prefer native version */
105     case DLL_PROCESS_ATTACH:
106         DisableThreadLibraryCalls(hInstDLL);
107         vbscript_hinstance = hInstDLL;
108         break;
109     }
110
111     return TRUE;
112 }
113
114 /***********************************************************************
115  *              DllGetClassObject       (vbscript.@)
116  */
117 HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID *ppv)
118 {
119     if(IsEqualGUID(&CLSID_VBScript, rclsid)) {
120         TRACE("(CLSID_VBScript %s %p)\n", debugstr_guid(riid), ppv);
121         return IClassFactory_QueryInterface(&VBScriptFactory, riid, ppv);
122     }
123
124     FIXME("%s %s %p\n", debugstr_guid(rclsid), debugstr_guid(riid), ppv);
125     return CLASS_E_CLASSNOTAVAILABLE;
126 }
127
128 /***********************************************************************
129  *          DllCanUnloadNow (vbscript.@)
130  */
131 HRESULT WINAPI DllCanUnloadNow(void)
132 {
133     FIXME("()\n");
134     return S_FALSE;
135 }
136
137 /***********************************************************************
138  *          DllRegisterServer (vbscript.@)
139  */
140 HRESULT WINAPI DllRegisterServer(void)
141 {
142     TRACE("()\n");
143     return __wine_register_resources(vbscript_hinstance, NULL);
144 }
145
146 /***********************************************************************
147  *          DllUnregisterServer (vbscript.@)
148  */
149 HRESULT WINAPI DllUnregisterServer(void)
150 {
151     TRACE("()\n");
152     return __wine_unregister_resources(vbscript_hinstance, NULL);
153 }