Skip to content

Commit

Permalink
combase: Add stub for RoGetServerActivatableClasses.
Browse files Browse the repository at this point in the history
Signed-off-by: Alistair Leslie-Hughes <[email protected]>
Signed-off-by: Alexandre Julliard <[email protected]>
  • Loading branch information
mmueller2012 authored and julliard committed May 4, 2018
1 parent ddbe3a7 commit 699003a
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
@ stub RoGetActivatableClassRegistration
@ stub RoGetServerActivatableClasses
@ stdcall RoGetServerActivatableClasses(ptr ptr ptr) combase.RoGetServerActivatableClasses
2 changes: 1 addition & 1 deletion dlls/combase/combase.spec
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@
@ stub RoGetErrorReportingFlags
@ stub RoGetMatchingRestrictedErrorInfo
@ stdcall RoGetParameterizedTypeInstanceIID(long ptr ptr ptr ptr)
@ stub RoGetServerActivatableClasses
@ stdcall RoGetServerActivatableClasses(ptr ptr ptr)
@ stdcall RoInitialize(long)
@ stub RoInspectCapturedStackBackTrace
@ stub RoInspectThreadErrorInfo
Expand Down
12 changes: 12 additions & 0 deletions dlls/combase/roapi.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

0 comments on commit 699003a

Please sign in to comment.