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
ddbe3a70
Commit
ddbe3a70
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 RoRegisterForApartmentShutdown.
Signed-off-by:
Alistair Leslie-Hughes
<
leslie_alistair@hotmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
a422f0ef
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
21 additions
and
2 deletions
+21
-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
+19
-0
No files found.
dlls/api-ms-win-core-winrt-l1-1-0/api-ms-win-core-winrt-l1-1-0.spec
View file @
ddbe3a70
...
...
@@ -3,7 +3,7 @@
@ stdcall RoGetApartmentIdentifier(ptr) combase.RoGetApartmentIdentifier
@ stdcall RoInitialize(long) combase.RoInitialize
@ stub RoRegisterActivationFactories
@ st
ub
RoRegisterForApartmentShutdown
@ st
dcall RoRegisterForApartmentShutdown(ptr ptr ptr) combase.
RoRegisterForApartmentShutdown
@ stub RoRevokeActivationFactories
@ stdcall RoUninitialize() combase.RoUninitialize
@ stub RoUnregisterForApartmentShutdown
dlls/combase/combase.spec
View file @
ddbe3a70
...
...
@@ -263,7 +263,7 @@
@ stub RoOriginateLanguageException
@ stub RoParameterizedTypeExtraGetTypeSignature
@ stub RoRegisterActivationFactories
@ st
ub RoRegisterForApartmentShutdown
@ st
dcall RoRegisterForApartmentShutdown(ptr ptr ptr)
@ stub RoReportCapabilityCheckFailure
@ stub RoReportFailedDelegate
@ stub RoReportUnhandledError
...
...
dlls/combase/roapi.c
View file @
ddbe3a70
...
...
@@ -232,3 +232,22 @@ HRESULT WINAPI RoGetApartmentIdentifier(UINT64 *identifier)
*
identifier
=
0xdeadbeef
;
return
S_OK
;
}
/***********************************************************************
* RoRegisterForApartmentShutdown (combase.@)
*/
HRESULT
WINAPI
RoRegisterForApartmentShutdown
(
IApartmentShutdown
*
callback
,
UINT64
*
identifier
,
APARTMENT_SHUTDOWN_REGISTRATION_COOKIE
*
cookie
)
{
HRESULT
hr
;
FIXME
(
"(%p, %p, %p): stub
\n
"
,
callback
,
identifier
,
cookie
);
hr
=
RoGetApartmentIdentifier
(
identifier
);
if
(
FAILED
(
hr
))
return
hr
;
if
(
cookie
)
*
cookie
=
(
void
*
)
0xcafecafe
;
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