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
699003a4
Commit
699003a4
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 RoGetServerActivatableClasses.
Signed-off-by:
Alistair Leslie-Hughes
<
leslie_alistair@hotmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
ddbe3a70
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
2 deletions
+14
-2
api-ms-win-core-winrt-registration-l1-1-0.spec
...ion-l1-1-0/api-ms-win-core-winrt-registration-l1-1-0.spec
+1
-1
combase.spec
dlls/combase/combase.spec
+1
-1
roapi.c
dlls/combase/roapi.c
+12
-0
No files found.
dlls/api-ms-win-core-winrt-registration-l1-1-0/api-ms-win-core-winrt-registration-l1-1-0.spec
View file @
699003a4
@ stub RoGetActivatableClassRegistration
@ st
ub
RoGetServerActivatableClasses
@ st
dcall RoGetServerActivatableClasses(ptr ptr ptr) combase.
RoGetServerActivatableClasses
dlls/combase/combase.spec
View file @
699003a4
...
...
@@ -254,7 +254,7 @@
@ stub RoGetErrorReportingFlags
@ stub RoGetMatchingRestrictedErrorInfo
@ stdcall RoGetParameterizedTypeInstanceIID(long ptr ptr ptr ptr)
@ st
ub RoGetServerActivatableClasses
@ st
dcall RoGetServerActivatableClasses(ptr ptr ptr)
@ stdcall RoInitialize(long)
@ stub RoInspectCapturedStackBackTrace
@ stub RoInspectThreadErrorInfo
...
...
dlls/combase/roapi.c
View file @
699003a4
...
...
@@ -251,3 +251,15 @@ HRESULT WINAPI RoRegisterForApartmentShutdown(IApartmentShutdown *callback,
*
cookie
=
(
void
*
)
0xcafecafe
;
return
S_OK
;
}
/***********************************************************************
* RoGetServerActivatableClasses (combase.@)
*/
HRESULT
WINAPI
RoGetServerActivatableClasses
(
HSTRING
name
,
HSTRING
**
classes
,
DWORD
*
count
)
{
FIXME
(
"(%p, %p, %p): stub
\n
"
,
name
,
classes
,
count
);
if
(
count
)
*
count
=
0
;
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