Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
823640fc
Commit
823640fc
authored
Mar 25, 2008
by
James Hawkins
Committed by
Alexandre Julliard
Mar 25, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fusion: Implement CreateAssemblyCache.
parent
082b4688
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
26 additions
and
9 deletions
+26
-9
asmcache.c
dlls/fusion/asmcache.c
+26
-0
fusion.c
dlls/fusion/fusion.c
+0
-9
No files found.
dlls/fusion/asmcache.c
View file @
823640fc
...
...
@@ -147,6 +147,32 @@ static const IAssemblyCacheVtbl AssemblyCacheVtbl = {
IAssemblyCacheImpl_InstallAssembly
};
/******************************************************************
* CreateAssemblyCache (FUSION.@)
*/
HRESULT
WINAPI
CreateAssemblyCache
(
IAssemblyCache
**
ppAsmCache
,
DWORD
dwReserved
)
{
IAssemblyCacheImpl
*
cache
;
TRACE
(
"(%p, %d)
\n
"
,
ppAsmCache
,
dwReserved
);
if
(
!
ppAsmCache
)
return
E_INVALIDARG
;
*
ppAsmCache
=
NULL
;
cache
=
HeapAlloc
(
GetProcessHeap
(),
0
,
sizeof
(
IAssemblyCacheImpl
));
if
(
!
cache
)
return
E_OUTOFMEMORY
;
cache
->
lpIAssemblyCacheVtbl
=
&
AssemblyCacheVtbl
;
cache
->
ref
=
1
;
*
ppAsmCache
=
(
IAssemblyCache
*
)
cache
;
return
S_OK
;
}
/* IAssemblyCacheItem */
typedef
struct
{
...
...
dlls/fusion/fusion.c
View file @
823640fc
...
...
@@ -54,15 +54,6 @@ HRESULT WINAPI CompareAssemblyIdentity(LPCWSTR pwzAssemblyIdentity1, BOOL fUnifi
}
/******************************************************************
* CreateAssemblyCache (FUSION.@)
*/
HRESULT
WINAPI
CreateAssemblyCache
(
IAssemblyCache
**
ppAsmCache
,
DWORD
dwReserved
)
{
FIXME
(
"(%p, %d) stub!
\n
"
,
ppAsmCache
,
dwReserved
);
return
E_NOTIMPL
;
}
/******************************************************************
* CreateAssemblyEnum (FUSION.@)
*/
HRESULT
WINAPI
CreateAssemblyEnum
(
IAssemblyEnum
**
pEnum
,
IUnknown
*
pUnkReserved
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment