vbscript: Added function parser implementation.
[wine] / dlls / wshom.ocx / wshom_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 "ole2.h"
28 #include "rpcproxy.h"
29
30 #include "wine/debug.h"
31
32 WINE_DEFAULT_DEBUG_CHANNEL(wshom);
33
34 static HINSTANCE wshom_instance;
35
36 /******************************************************************
37  *              DllMain (wshom.ocx.@)
38  */
39 BOOL WINAPI DllMain(HINSTANCE hInstDLL, DWORD fdwReason, LPVOID lpv)
40 {
41     TRACE("(%p %d %p)\n", hInstDLL, fdwReason, lpv);
42
43     switch(fdwReason)
44     {
45     case DLL_WINE_PREATTACH:
46         return FALSE;  /* prefer native version */
47     case DLL_PROCESS_ATTACH:
48         wshom_instance = hInstDLL;
49         DisableThreadLibraryCalls(wshom_instance);
50         break;
51     }
52
53     return TRUE;
54 }
55
56 /***********************************************************************
57  *              DllGetClassObject       (wshom.ocx.@)
58  */
59 HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID *ppv)
60 {
61     FIXME("%s %s %p\n", debugstr_guid(rclsid), debugstr_guid(riid), ppv);
62     return CLASS_E_CLASSNOTAVAILABLE;
63 }
64
65 /***********************************************************************
66  *          DllCanUnloadNow (wshom.ocx.@)
67  */
68 HRESULT WINAPI DllCanUnloadNow(void)
69 {
70     FIXME("()\n");
71     return S_FALSE;
72 }
73
74 /***********************************************************************
75  *          DllRegisterServer (wshom.ocx.@)
76  */
77 HRESULT WINAPI DllRegisterServer(void)
78 {
79     TRACE("()\n");
80     return __wine_register_resources(wshom_instance);
81 }
82
83 /***********************************************************************
84  *          DllUnregisterServer (wshom.ocx.@)
85  */
86 HRESULT WINAPI DllUnregisterServer(void)
87 {
88     TRACE("()\n");
89     return __wine_unregister_resources(wshom_instance);
90 }