Module: wine Branch: master Commit: 6218238c0c9ee6b10fe7f482bb7fbcd3d9de1a42 URL: http://source.winehq.org/git/wine.git/?a=commit;h=6218238c0c9ee6b10fe7f482bb...
Author: Francois Gouget fgouget@free.fr Date: Fri May 15 02:01:44 2009 +0200
fusion: CompareAssemblyIdentity() and GetAssemblyIdentityFromFile() are unused stubs and don't belong in fusion.dll. So remove them.
---
dlls/fusion/fusion.c | 25 ------------------------- 1 files changed, 0 insertions(+), 25 deletions(-)
diff --git a/dlls/fusion/fusion.c b/dlls/fusion/fusion.c index 1435743..7c94100 100644 --- a/dlls/fusion/fusion.c +++ b/dlls/fusion/fusion.c @@ -42,19 +42,6 @@ HRESULT WINAPI ClearDownloadCache(void) }
/****************************************************************** - * CompareAssemblyIdentity (FUSION.@) - */ -HRESULT WINAPI CompareAssemblyIdentity(LPCWSTR pwzAssemblyIdentity1, BOOL fUnified1, - LPCWSTR pwzAssemblyIdentity2, BOOL fUnified2, - BOOL *pfEquivalent, AssemblyComparisonResult *pResult) -{ - FIXME("(%s, %d, %s, %d, %p, %p) stub!\n", debugstr_w(pwzAssemblyIdentity1), - fUnified1, debugstr_w(pwzAssemblyIdentity2), fUnified2, pfEquivalent, pResult); - - return E_NOTIMPL; -} - -/****************************************************************** * CreateInstallReferenceEnum (FUSION.@) */ HRESULT WINAPI CreateInstallReferenceEnum(IInstallReferenceEnum **ppRefEnum, @@ -65,18 +52,6 @@ HRESULT WINAPI CreateInstallReferenceEnum(IInstallReferenceEnum **ppRefEnum, return E_NOTIMPL; }
-/****************************************************************** - * GetAssemblyIdentityFromFile (FUSION.@) - */ -HRESULT WINAPI GetAssemblyIdentityFromFile(LPCWSTR pwzFilePath, REFIID riid, - IUnknown **ppIdentity) -{ - FIXME("(%s, %s, %p) stub!\n", debugstr_w(pwzFilePath), debugstr_guid(riid), - ppIdentity); - - return E_NOTIMPL; -} - static HRESULT (WINAPI *pGetCORVersion)(LPWSTR pbuffer, DWORD cchBuffer, DWORD *dwLength);