From: Zhiyi Zhang <zzhang@codeweavers.com> --- dlls/twinapi.appcore/Makefile.in | 1 + dlls/twinapi.appcore/classes.idl | 4 + dlls/twinapi.appcore/core_application.c | 115 ++++++++++++++++++++++++ dlls/twinapi.appcore/main.c | 2 + dlls/twinapi.appcore/private.h | 3 + 5 files changed, 125 insertions(+) create mode 100644 dlls/twinapi.appcore/core_application.c diff --git a/dlls/twinapi.appcore/Makefile.in b/dlls/twinapi.appcore/Makefile.in index a68379ff96b..c8228475016 100644 --- a/dlls/twinapi.appcore/Makefile.in +++ b/dlls/twinapi.appcore/Makefile.in @@ -8,4 +8,5 @@ SOURCES = \ application_view.c \ classes.idl \ client_device_information.c \ + core_application.c \ main.c diff --git a/dlls/twinapi.appcore/classes.idl b/dlls/twinapi.appcore/classes.idl index 3ad10afa227..83aba1c4133 100644 --- a/dlls/twinapi.appcore/classes.idl +++ b/dlls/twinapi.appcore/classes.idl @@ -31,6 +31,7 @@ import "windows.security.exchangeactivesyncprovisioning.idl"; import "windows.system.profile.idl"; import "windows.system.userprofile.idl"; import "windows.ui.viewmanagement.idl"; +import "windows.applicationmodel.core.idl"; namespace Windows.Security.ExchangeActiveSyncProvisioning { runtimeclass EasClientDeviceInformation; @@ -44,3 +45,6 @@ namespace Windows.System.UserProfile { namespace Windows.UI.ViewManagement { runtimeclass ApplicationView; } +namespace Windows.ApplicationModel.Core { + runtimeclass CoreApplication; +} diff --git a/dlls/twinapi.appcore/core_application.c b/dlls/twinapi.appcore/core_application.c new file mode 100644 index 00000000000..c3325581bf2 --- /dev/null +++ b/dlls/twinapi.appcore/core_application.c @@ -0,0 +1,115 @@ +/* WinRT Windows.ApplicationModel.Core.CoreApplication implementation + * + * Copyright 2025 Zhiyi Zhang for CodeWeavers + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA + */ + +#include "private.h" + +WINE_DEFAULT_DEBUG_CHANNEL(twinapi); + +struct factory +{ + IActivationFactory IActivationFactory_iface; + LONG ref; +}; + +static inline struct factory *impl_from_IActivationFactory( IActivationFactory *iface ) +{ + return CONTAINING_RECORD( iface, struct factory, IActivationFactory_iface ); +} + +static HRESULT WINAPI activation_factory_QueryInterface( IActivationFactory *iface, REFIID iid, void **out ) +{ + struct factory *impl = impl_from_IActivationFactory( iface ); + + TRACE( "iface %p, iid %s, out %p stub!\n", iface, debugstr_guid( iid ), out ); + + if (IsEqualGUID( iid, &IID_IUnknown ) || + IsEqualGUID( iid, &IID_IInspectable ) || + IsEqualGUID( iid, &IID_IAgileObject ) || + IsEqualGUID( iid, &IID_IActivationFactory )) + { + IActivationFactory_AddRef( &impl->IActivationFactory_iface ); + *out = &impl->IActivationFactory_iface; + return S_OK; + } + + FIXME( "%s not implemented, returning E_NOINTERFACE.\n", debugstr_guid( iid ) ); + *out = NULL; + return E_NOINTERFACE; +} + +static ULONG WINAPI activation_factory_AddRef( IActivationFactory *iface ) +{ + struct factory *impl = impl_from_IActivationFactory( iface ); + ULONG ref = InterlockedIncrement( &impl->ref ); + TRACE( "iface %p, ref %lu.\n", iface, ref ); + return ref; +} + +static ULONG WINAPI activation_factory_Release( IActivationFactory *iface ) +{ + struct factory *impl = impl_from_IActivationFactory( iface ); + ULONG ref = InterlockedDecrement( &impl->ref ); + TRACE( "iface %p, ref %lu.\n", iface, ref ); + return ref; +} + +static HRESULT WINAPI activation_factory_GetIids( IActivationFactory *iface, ULONG *iid_count, IID **iids ) +{ + FIXME( "iface %p, iid_count %p, iids %p stub!\n", iface, iid_count, iids ); + return E_NOTIMPL; +} + +static HRESULT WINAPI activation_factory_GetRuntimeClassName( IActivationFactory *iface, HSTRING *class_name ) +{ + FIXME( "iface %p, class_name %p stub!\n", iface, class_name ); + return E_NOTIMPL; +} + +static HRESULT WINAPI activation_factory_GetTrustLevel( IActivationFactory *iface, TrustLevel *trust_level ) +{ + FIXME( "iface %p, trust_level %p stub!\n", iface, trust_level ); + return E_NOTIMPL; +} + +static HRESULT WINAPI activation_factory_ActivateInstance( IActivationFactory *iface, IInspectable **instance ) +{ + FIXME( "iface %p, instance %p stub!\n", iface, instance ); + return E_NOTIMPL; +} + +static const struct IActivationFactoryVtbl activation_factory_vtbl = +{ + activation_factory_QueryInterface, + activation_factory_AddRef, + activation_factory_Release, + /* IInspectable methods */ + activation_factory_GetIids, + activation_factory_GetRuntimeClassName, + activation_factory_GetTrustLevel, + /* IActivationFactory methods */ + activation_factory_ActivateInstance, +}; + +static struct factory factory = +{ + {&activation_factory_vtbl}, + 1, +}; + +IActivationFactory *core_application_factory = &factory.IActivationFactory_iface; diff --git a/dlls/twinapi.appcore/main.c b/dlls/twinapi.appcore/main.c index eab55d33e1a..0021499dfae 100644 --- a/dlls/twinapi.appcore/main.c +++ b/dlls/twinapi.appcore/main.c @@ -77,6 +77,8 @@ HRESULT WINAPI DllGetActivationFactory( HSTRING classid, IActivationFactory **fa IActivationFactory_QueryInterface( advertising_manager_factory, &IID_IActivationFactory, (void **)factory ); else if (!wcscmp( buffer, RuntimeClass_Windows_UI_ViewManagement_ApplicationView )) IActivationFactory_QueryInterface( application_view_factory, &IID_IActivationFactory, (void **)factory ); + else if (!wcscmp( buffer, RuntimeClass_Windows_ApplicationModel_Core_CoreApplication )) + IActivationFactory_QueryInterface( core_application_factory, &IID_IActivationFactory, (void **)factory ); if (*factory) return S_OK; return CLASS_E_CLASSNOTAVAILABLE; diff --git a/dlls/twinapi.appcore/private.h b/dlls/twinapi.appcore/private.h index bb62d7f6332..8439c983cb5 100644 --- a/dlls/twinapi.appcore/private.h +++ b/dlls/twinapi.appcore/private.h @@ -38,6 +38,8 @@ #include "windows.system.userprofile.h" #define WIDL_using_Windows_UI_ViewManagement #include "windows.ui.viewmanagement.h" +#define WIDL_using_Windows_ApplicationModel_Core +#include "windows.applicationmodel.core.h" #include "wine/debug.h" @@ -45,6 +47,7 @@ extern IActivationFactory *application_view_factory; extern IActivationFactory *client_device_information_factory; extern IActivationFactory *analytics_info_factory; extern IActivationFactory *advertising_manager_factory; +extern IActivationFactory *core_application_factory; #define DEFINE_IINSPECTABLE_( pfx, iface_type, impl_type, impl_from, iface_mem, expr ) \ static inline impl_type *impl_from( iface_type *iface ) \ -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/9962