quartz: Remove dead code from DSoundRender.
[wine/wine64.git] / dlls / fusion / fusion.c
blob999cb9200b0c729730c66ea1703e6584619db47b
1 /*
2 * Implementation of the Fusion API
4 * Copyright 2008 James Hawkins
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 #include <stdarg.h>
23 #define COBJMACROS
25 #include "windef.h"
26 #include "winbase.h"
27 #include "winuser.h"
28 #include "ole2.h"
29 #include "fusion.h"
30 #include "wine/debug.h"
32 WINE_DEFAULT_DEBUG_CHANNEL(fusion);
34 /******************************************************************
35 * ClearDownloadCache (FUSION.@)
37 HRESULT WINAPI ClearDownloadCache(void)
39 FIXME("stub!\n");
40 return E_NOTIMPL;
43 /******************************************************************
44 * CompareAssemblyIdentity (FUSION.@)
46 HRESULT WINAPI CompareAssemblyIdentity(LPCWSTR pwzAssemblyIdentity1, BOOL fUnified1,
47 LPCWSTR pwzAssemblyIdentity2, BOOL fUnified2,
48 BOOL *pfEquivalent, AssemblyComparisonResult *pResult)
50 FIXME("(%s, %d, %s, %d, %p, %p) stub!\n", debugstr_w(pwzAssemblyIdentity1),
51 fUnified1, debugstr_w(pwzAssemblyIdentity2), fUnified2, pfEquivalent, pResult);
53 return E_NOTIMPL;
56 /******************************************************************
57 * CreateAssemblyEnum (FUSION.@)
59 HRESULT WINAPI CreateAssemblyEnum(IAssemblyEnum **pEnum, IUnknown *pUnkReserved,
60 IAssemblyName *pName, DWORD dwFlags, LPVOID pvReserved)
62 FIXME("(%p, %p, %p, %08x, %p) stub!\n", pEnum, pUnkReserved,
63 pName, dwFlags, pvReserved);
65 return E_NOTIMPL;
68 /******************************************************************
69 * CreateAssemblyNameObject (FUSION.@)
71 HRESULT WINAPI CreateAssemblyNameObject(LPASSEMBLYNAME *ppAssemblyNameObj,
72 LPCWSTR szAssemblyName, DWORD dwFlags,
73 LPVOID pvReserved)
75 FIXME("(%p, %s, %08x, %p) stub!\n", ppAssemblyNameObj,
76 debugstr_w(szAssemblyName), dwFlags, pvReserved);
78 return E_NOTIMPL;
81 /******************************************************************
82 * CreateInstallReferenceEnum (FUSION.@)
84 HRESULT WINAPI CreateInstallReferenceEnum(IInstallReferenceEnum **ppRefEnum,
85 IAssemblyName *pName, DWORD dwFlags,
86 LPVOID pvReserved)
88 FIXME("(%p, %p, %08x, %p) stub!\n", ppRefEnum, pName, dwFlags, pvReserved);
89 return E_NOTIMPL;
92 /******************************************************************
93 * GetAssemblyIdentityFromFile (FUSION.@)
95 HRESULT WINAPI GetAssemblyIdentityFromFile(LPCWSTR pwzFilePath, REFIID riid,
96 IUnknown **ppIdentity)
98 FIXME("(%s, %s, %p) stub!\n", debugstr_w(pwzFilePath), debugstr_guid(riid),
99 ppIdentity);
101 return E_NOTIMPL;
104 /******************************************************************
105 * GetCachePath (FUSION.@)
107 HRESULT WINAPI GetCachePath(ASM_CACHE_FLAGS dwCacheFlags, LPWSTR pwzCachePath,
108 PDWORD pcchPath)
110 FIXME("(%08x, %s, %p) stub!\n", dwCacheFlags, debugstr_w(pwzCachePath), pcchPath);
111 return E_NOTIMPL;