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
7b1dde9d
Commit
7b1dde9d
authored
Jun 29, 2008
by
James Hawkins
Committed by
Alexandre Julliard
Jul 01, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fusion: Add initial implementation of IAssemblyName.
parent
9ac630e0
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
354 additions
and
24 deletions
+354
-24
asmname.c
dlls/fusion/asmname.c
+350
-8
fusion.c
dlls/fusion/fusion.c
+0
-13
corerror.h
include/corerror.h
+4
-3
No files found.
dlls/fusion/asmname.c
View file @
7b1dde9d
This diff is collapsed.
Click to expand it.
dlls/fusion/fusion.c
View file @
7b1dde9d
...
...
@@ -66,19 +66,6 @@ HRESULT WINAPI CreateAssemblyEnum(IAssemblyEnum **pEnum, IUnknown *pUnkReserved,
}
/******************************************************************
* 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
,
...
...
include/corerror.h
View file @
7b1dde9d
...
...
@@ -22,12 +22,12 @@
#include <winerror.h>
#ifndef FACILITY_URT
#define FACILITY_URT 0x13
#define FACILITY_URT 0x13
#endif
#ifndef EMAKEHR
#define SMAKEHR(val) MAKE_HRESULT(SEVERITY_SUCCESS, FACILITY_URT, val)
#define EMAKEHR(val) MAKE_HRESULT(SEVERITY_ERROR, FACILITY_URT, val)
#define SMAKEHR(val) MAKE_HRESULT(SEVERITY_SUCCESS, FACILITY_URT, val)
#define EMAKEHR(val) MAKE_HRESULT(SEVERITY_ERROR, FACILITY_URT, val)
#endif
#define COR_E_ARGUMENT E_INVALIDARG
...
...
@@ -119,5 +119,6 @@
#define COR_E_HOSTPROTECTION EMAKEHR(0x1640L)
#define COR_E_ILLEGAL_REENTRANCY EMAKEHR(0x1641L)
#define FUSION_E_INVALID_NAME EMAKEHR(0x1047)
#endif
/* __WINE_CORERROR_H */
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