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
30 #include "wine/debug.h"
31 #include "wine/unicode.h"
33 WINE_DEFAULT_DEBUG_CHANNEL(fusion
);
36 /******************************************************************
37 * InitializeFusion (FUSION.@)
39 HRESULT WINAPI
InitializeFusion(void)
45 /******************************************************************
46 * ClearDownloadCache (FUSION.@)
48 HRESULT WINAPI
ClearDownloadCache(void)
54 /******************************************************************
57 HRESULT WINAPI
CopyPDBs(void *unknown
)
59 FIXME("(%p) stub!\n", unknown
);
63 /******************************************************************
64 * CreateInstallReferenceEnum (FUSION.@)
66 HRESULT WINAPI
CreateInstallReferenceEnum(IInstallReferenceEnum
**ppRefEnum
,
67 IAssemblyName
*pName
, DWORD dwFlags
,
70 FIXME("(%p, %p, %08x, %p) stub!\n", ppRefEnum
, pName
, dwFlags
, pvReserved
);
74 /******************************************************************
75 * CreateApplicationContext (FUSION.@)
77 HRESULT WINAPI
CreateApplicationContext(IAssemblyName
*name
, void *ctx
)
79 FIXME("%p, %p\n", name
, ctx
);
83 static HRESULT (WINAPI
*pGetCORVersion
)(LPWSTR pbuffer
, DWORD cchBuffer
,
86 static HRESULT
get_corversion(LPWSTR version
, DWORD size
)
92 hmscoree
= LoadLibraryA("mscoree.dll");
96 pGetCORVersion
= (void *)GetProcAddress(hmscoree
, "GetCORVersion");
100 hr
= pGetCORVersion(version
, size
, &len
);
102 FreeLibrary(hmscoree
);
106 /******************************************************************
107 * GetCachePath (FUSION.@)
109 HRESULT WINAPI
GetCachePath(ASM_CACHE_FLAGS dwCacheFlags
, LPWSTR pwzCachePath
,
112 static const WCHAR assembly
[] = {'\\','a','s','s','e','m','b','l','y',0};
113 static const WCHAR gac
[] = {'\\','G','A','C',0};
114 static const WCHAR nativeimg
[] = {'N','a','t','i','v','e','I','m','a','g','e','s','_',0};
115 static const WCHAR dotnet
[] = {'\\','M','i','c','r','o','s','o','f','t','.','N','E','T',0};
117 static const WCHAR zapfmt
[] = {'%','s','\\','%','s','\\','%','s','%','s','_','6','4',0};
119 static const WCHAR zapfmt
[] = {'%','s','\\','%','s','\\','%','s','%','s','_','3','2',0};
121 WCHAR path
[MAX_PATH
], windir
[MAX_PATH
], version
[MAX_PATH
];
125 TRACE("(%08x, %p, %p)\n", dwCacheFlags
, pwzCachePath
, pcchPath
);
130 len
= GetWindowsDirectoryW(windir
, MAX_PATH
);
131 strcpyW(path
, windir
);
133 switch (dwCacheFlags
)
137 hr
= get_corversion(version
, MAX_PATH
);
141 len
= sprintfW(path
, zapfmt
, windir
, assembly
+ 1, nativeimg
, version
);
146 strcpyW(path
+ len
, assembly
);
147 len
+= sizeof(assembly
)/sizeof(WCHAR
) - 1;
148 strcpyW(path
+ len
, gac
);
149 len
+= sizeof(gac
)/sizeof(WCHAR
) - 1;
152 case ASM_CACHE_DOWNLOAD
:
154 FIXME("Download cache not implemented\n");
158 strcpyW(path
+ len
, assembly
);
159 len
+= sizeof(assembly
)/sizeof(WCHAR
) - 1;
161 case ASM_CACHE_ROOT_EX
:
162 strcpyW(path
+ len
, dotnet
);
163 len
+= sizeof(dotnet
)/sizeof(WCHAR
) - 1;
164 strcpyW(path
+ len
, assembly
);
165 len
+= sizeof(assembly
)/sizeof(WCHAR
) - 1;
172 if (*pcchPath
<= len
|| !pwzCachePath
)
173 hr
= E_NOT_SUFFICIENT_BUFFER
;
174 else if (pwzCachePath
)
175 strcpyW(pwzCachePath
, path
);