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
ddb0339f
Commit
ddb0339f
authored
Aug 25, 2022
by
Loïc Rebmeister
Committed by
Alexandre Julliard
Aug 25, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wintypes: Add RoResolveNamespace stub.
Signed-off-by:
Loïc Rebmeister
<
fox2code@gmail.com
>
parent
42f9a8ef
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
1 deletion
+16
-1
main.c
dlls/wintypes/main.c
+15
-0
wintypes.spec
dlls/wintypes/wintypes.spec
+1
-1
No files found.
dlls/wintypes/main.c
View file @
ddb0339f
...
...
@@ -354,3 +354,18 @@ HRESULT WINAPI DllGetActivationFactory(HSTRING classid, IActivationFactory **fac
IUnknown_AddRef
(
*
factory
);
return
S_OK
;
}
HRESULT
WINAPI
RoResolveNamespace
(
HSTRING
name
,
HSTRING
windowsMetaDataDir
,
DWORD
packageGraphDirsCount
,
const
HSTRING
*
packageGraphDirs
,
DWORD
*
metaDataFilePathsCount
,
HSTRING
**
metaDataFilePaths
,
DWORD
*
subNamespacesCount
,
HSTRING
**
subNamespaces
)
{
FIXME
(
"name %s, windowsMetaDataDir %s, metaDataFilePaths %p, subNamespaces %p stub!
\n
"
,
debugstr_hstring
(
name
),
debugstr_hstring
(
windowsMetaDataDir
),
metaDataFilePaths
,
subNamespaces
);
if
(
!
metaDataFilePaths
&&
!
subNamespaces
)
return
E_INVALIDARG
;
return
RO_E_METADATA_NAME_NOT_FOUND
;
}
dlls/wintypes/wintypes.spec
View file @
ddb0339f
...
...
@@ -8,4 +8,4 @@
@ stub RoIsApiContractMajorVersionPresent
@ stub RoIsApiContractPresent
@ stub RoParseTypeName
@ st
ub RoResolveNamespace
@ st
dcall RoResolveNamespace(ptr ptr long ptr ptr ptr ptr ptr)
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