Add RtlDowncaseUnicodeChar(), RtlEqualComputerName(),
[wine] / dlls / quartz / main.c
1 #include "wine/debug.h"
2 #include "winerror.h"
3
4
5 WINE_DEFAULT_DEBUG_CHANNEL(quartz);
6
7 DWORD dll_ref = 0;
8
9 /***********************************************************************
10  *      DllRegisterServer (QUARTZ.@)
11  */
12 HRESULT WINAPI QUARTZ_DllRegisterServer()
13 {
14         FIXME("(): stub\n");
15         return 0;
16 }
17
18 /***********************************************************************
19  *              DllGetClassObject (QUARTZ.@)
20  */
21 HRESULT WINAPI QUARTZ_DllGetClassObject(REFCLSID rclsid, REFIID iid, LPVOID *ppv)
22 {
23     FIXME("\n\tCLSID:\t%s,\n\tIID:\t%s\n",debugstr_guid(rclsid),debugstr_guid(iid));
24     return CLASS_E_CLASSNOTAVAILABLE;
25 }
26
27 /***********************************************************************
28  *              DllCanUnloadNow (QUARTZ.@)
29  */
30 HRESULT WINAPI QUARTZ_DllCanUnloadNow()
31 {
32     return dll_ref != 0 ? S_FALSE : S_OK;
33 }