Commit 13a10170 authored by Martin Storsjo's avatar Martin Storsjo Committed by Alexandre Julliard

api-ms-win-core-winrt-l1-1-0: Move implementations into combase.

parent f185af6e
MODULE = api-ms-win-core-winrt-l1-1-0.dll MODULE = api-ms-win-core-winrt-l1-1-0.dll
IMPORTS = ole32
C_SRCS = \
main.c
@ stub RoActivateInstance @ stub RoActivateInstance
@ stub RoGetActivationFactory @ stub RoGetActivationFactory
@ stub RoGetApartmentIdentifier @ stub RoGetApartmentIdentifier
@ stdcall RoInitialize(long) @ stdcall RoInitialize(long) combase.RoInitialize
@ stub RoRegisterActivationFactories @ stub RoRegisterActivationFactories
@ stub RoRegisterForApartmentShutdown @ stub RoRegisterForApartmentShutdown
@ stub RoRevokeActivationFactories @ stub RoRevokeActivationFactories
@ stdcall RoUninitialize() @ stdcall RoUninitialize() combase.RoUninitialize
@ stub RoUnregisterForApartmentShutdown @ stub RoUnregisterForApartmentShutdown
MODULE = combase.dll MODULE = combase.dll
IMPORTS = ole32
C_SRCS = \
roapi.c
...@@ -255,7 +255,7 @@ ...@@ -255,7 +255,7 @@
@ stub RoGetMatchingRestrictedErrorInfo @ stub RoGetMatchingRestrictedErrorInfo
@ stub RoGetParameterizedTypeInstanceIID @ stub RoGetParameterizedTypeInstanceIID
@ stub RoGetServerActivatableClasses @ stub RoGetServerActivatableClasses
@ stub RoInitialize @ stdcall RoInitialize(long)
@ stub RoInspectCapturedStackBackTrace @ stub RoInspectCapturedStackBackTrace
@ stub RoInspectThreadErrorInfo @ stub RoInspectThreadErrorInfo
@ stub RoOriginateError @ stub RoOriginateError
...@@ -272,7 +272,7 @@ ...@@ -272,7 +272,7 @@
@ stub RoSetErrorReportingFlags @ stub RoSetErrorReportingFlags
@ stub RoTransformError @ stub RoTransformError
@ stub RoTransformErrorW @ stub RoTransformErrorW
@ stub RoUninitialize @ stdcall RoUninitialize()
@ stub RoUnregisterForApartmentShutdown @ stub RoUnregisterForApartmentShutdown
@ stub SetCleanupFlag @ stub SetCleanupFlag
@ stdcall SetErrorInfo(long ptr) ole32.SetErrorInfo @ stdcall SetErrorInfo(long ptr) ole32.SetErrorInfo
......
...@@ -15,15 +15,16 @@ ...@@ -15,15 +15,16 @@
* License along with this library; if not, write to the Free Software * License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/ */
#include "objbase.h" #include "objbase.h"
#include "roapi.h" #include "roapi.h"
#include "wine/debug.h" #include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL(winrt); WINE_DEFAULT_DEBUG_CHANNEL(combase);
/*********************************************************************** /***********************************************************************
* RoInitialize (api-ms-win-core-winrt-l1-1-0.@) * RoInitialize (combase.@)
*/ */
HRESULT WINAPI RoInitialize(RO_INIT_TYPE type) HRESULT WINAPI RoInitialize(RO_INIT_TYPE type)
{ {
...@@ -38,7 +39,7 @@ HRESULT WINAPI RoInitialize(RO_INIT_TYPE type) ...@@ -38,7 +39,7 @@ HRESULT WINAPI RoInitialize(RO_INIT_TYPE type)
} }
/*********************************************************************** /***********************************************************************
* RoUninitialize (api-ms-win-core-winrt-l1-1-0.@) * RoUninitialize (combase.@)
*/ */
void WINAPI RoUninitialize(void) void WINAPI RoUninitialize(void)
{ {
......
...@@ -204,6 +204,10 @@ my @dll_groups = ...@@ -204,6 +204,10 @@ my @dll_groups =
"gdi32", "gdi32",
"ext-ms-win-gdi-devcaps-l1-1-0", "ext-ms-win-gdi-devcaps-l1-1-0",
], ],
[
"combase",
"api-ms-win-core-winrt-l1-1-0",
],
); );
my $update_flags = 0; my $update_flags = 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment