Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
87b970ce
Commit
87b970ce
authored
Mar 23, 2008
by
James Hawkins
Committed by
Alexandre Julliard
Mar 24, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fusion: Add a few fusion stubs.
parent
ea3be467
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
128 additions
and
6 deletions
+128
-6
Makefile.in
dlls/fusion/Makefile.in
+1
-0
fusion.c
dlls/fusion/fusion.c
+121
-0
fusion.spec
dlls/fusion/fusion.spec
+6
-6
No files found.
dlls/fusion/Makefile.in
View file @
87b970ce
...
...
@@ -6,6 +6,7 @@ MODULE = fusion.dll
IMPORTS
=
kernel32
C_SRCS
=
\
fusion.c
\
fusion_main.c
@MAKE_DLL_RULES@
...
...
dlls/fusion/fusion.c
0 → 100644
View file @
87b970ce
/*
* Implementation of the Fusion API
*
* Copyright 2008 James Hawkins
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include <stdarg.h>
#define COBJMACROS
#include "windef.h"
#include "winbase.h"
#include "winuser.h"
#include "ole2.h"
#include "fusion.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
fusion
);
/******************************************************************
* ClearDownloadCache (FUSION.@)
*/
HRESULT
WINAPI
ClearDownloadCache
(
void
)
{
FIXME
(
"stub!
\n
"
);
return
E_NOTIMPL
;
}
/******************************************************************
* 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
;
}
/******************************************************************
* 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
,
IAssemblyName
*
pName
,
DWORD
dwFlags
,
LPVOID
pvReserved
)
{
FIXME
(
"(%p, %p, %p, %08x, %p) stub!
\n
"
,
pEnum
,
pUnkReserved
,
pName
,
dwFlags
,
pvReserved
);
return
E_NOTIMPL
;
}
/******************************************************************
* CreateAssemblyNameObject (FUSION.@)
*/
HRESULT
WINAPI
CreateAssemblyNameObject
(
LPASSEMBLYNAME
*
ppAssemblyNameObj
,
LPCWSTR
szAssemblyName
,
DWORD
dwFlags
,
LPVOID
pvReserved
)
{
FIXME
(
"(%p, %s, %08x, %p) stub!
\n
"
,
ppAssemblyNameObj
,
debugstr_w
(
szAssemblyName
),
dwFlags
,
pvReserved
);
return
E_NOTIMPL
;
}
/******************************************************************
* CreateInstallReferenceEnum (FUSION.@)
*/
HRESULT
WINAPI
CreateInstallReferenceEnum
(
IInstallReferenceEnum
**
ppRefEnum
,
IAssemblyName
*
pName
,
DWORD
dwFlags
,
LPVOID
pvReserved
)
{
FIXME
(
"(%p, %p, %08x, %p) stub!
\n
"
,
ppRefEnum
,
pName
,
dwFlags
,
pvReserved
);
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
;
}
/******************************************************************
* GetCachePath (FUSION.@)
*/
HRESULT
WINAPI
GetCachePath
(
ASM_CACHE_FLAGS
dwCacheFlags
,
LPWSTR
pwzCachePath
,
PDWORD
pcchPath
)
{
FIXME
(
"(%08x, %s, %p) stub!
\n
"
,
dwCacheFlags
,
debugstr_w
(
pwzCachePath
),
pcchPath
);
return
E_NOTIMPL
;
}
dlls/fusion/fusion.spec
View file @
87b970ce
@ stub CopyPDBs
@ st
ub ClearDownloadCache
@ st
dcall ClearDownloadCache()
@ stub CreateApplicationContext
@ st
ub CreateAssemblyCache
@ st
ub CreateAssemblyEnum
@ st
ub CreateAssemblyNameObject
@ st
dcall CreateAssemblyCache(ptr long)
@ st
dcall CreateAssemblyEnum(ptr ptr ptr long ptr)
@ st
dcall CreateAssemblyNameObject(ptr wstr long ptr)
@ stub CreateHistoryReader
@ st
ub CreateInstallReferenceEnum
@ st
ub GetCachePath
@ st
dcall CreateInstallReferenceEnum(ptr ptr long ptr)
@ st
dcall GetCachePath(long wstr ptr)
@ stub GetHistoryFileDirectory
@ stub InitializeFusion
@ stub InstallCustomAssembly
...
...
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