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
a422f0ef
Commit
a422f0ef
authored
May 04, 2018
by
Michael Müller
Committed by
Alexandre Julliard
May 04, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
combase: Add stub for RoGetApartmentIdentifier.
Signed-off-by:
Alistair Leslie-Hughes
<
leslie_alistair@hotmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
f7d1e161
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
2 deletions
+16
-2
api-ms-win-core-winrt-l1-1-0.spec
...s-win-core-winrt-l1-1-0/api-ms-win-core-winrt-l1-1-0.spec
+1
-1
combase.spec
dlls/combase/combase.spec
+1
-1
roapi.c
dlls/combase/roapi.c
+14
-0
No files found.
dlls/api-ms-win-core-winrt-l1-1-0/api-ms-win-core-winrt-l1-1-0.spec
View file @
a422f0ef
@ stdcall RoActivateInstance(ptr ptr) combase.RoActivateInstance
@ stdcall RoGetActivationFactory(ptr ptr ptr) combase.RoGetActivationFactory
@ st
ub
RoGetApartmentIdentifier
@ st
dcall RoGetApartmentIdentifier(ptr) combase.
RoGetApartmentIdentifier
@ stdcall RoInitialize(long) combase.RoInitialize
@ stub RoRegisterActivationFactories
@ stub RoRegisterForApartmentShutdown
...
...
dlls/combase/combase.spec
View file @
a422f0ef
...
...
@@ -250,7 +250,7 @@
@ stub RoGetActivatableClassRegistration
@ stdcall RoGetActivationFactory(ptr ptr ptr)
@ stub RoGetAgileReference
@ st
ub RoGetApartmentIdentifier
@ st
dcall RoGetApartmentIdentifier(ptr)
@ stub RoGetErrorReportingFlags
@ stub RoGetMatchingRestrictedErrorInfo
@ stdcall RoGetParameterizedTypeInstanceIID(long ptr ptr ptr ptr)
...
...
dlls/combase/roapi.c
View file @
a422f0ef
...
...
@@ -218,3 +218,17 @@ HRESULT WINAPI RoActivateInstance(HSTRING classid, IInspectable **instance)
return
hr
;
}
/***********************************************************************
* RoGetApartmentIdentifier (combase.@)
*/
HRESULT
WINAPI
RoGetApartmentIdentifier
(
UINT64
*
identifier
)
{
FIXME
(
"(%p): stub
\n
"
,
identifier
);
if
(
!
identifier
)
return
E_INVALIDARG
;
*
identifier
=
0xdeadbeef
;
return
S_OK
;
}
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