windows.system.profile.systemmanufacturers: Add stub DLL.
This commit is contained in:
parent
e8ebab396d
commit
db684bff7f
9 changed files with 306 additions and 0 deletions
3
configure
vendored
3
configure
vendored
|
@ -1450,6 +1450,7 @@ enable_windows_media_devices
|
|||
enable_windows_media_speech
|
||||
enable_windows_media
|
||||
enable_windows_networking
|
||||
enable_windows_system_profile_systemmanufacturers
|
||||
enable_windowscodecs
|
||||
enable_windowscodecsext
|
||||
enable_winealsa_drv
|
||||
|
@ -21752,6 +21753,8 @@ wine_fn_config_makefile dlls/windows.media.speech/tests enable_tests
|
|||
wine_fn_config_makefile dlls/windows.media enable_windows_media
|
||||
wine_fn_config_makefile dlls/windows.media/tests enable_tests
|
||||
wine_fn_config_makefile dlls/windows.networking enable_windows_networking
|
||||
wine_fn_config_makefile dlls/windows.system.profile.systemmanufacturers enable_windows_system_profile_systemmanufacturers
|
||||
wine_fn_config_makefile dlls/windows.system.profile.systemmanufacturers/tests enable_tests
|
||||
wine_fn_config_makefile dlls/windowscodecs enable_windowscodecs
|
||||
wine_fn_config_makefile dlls/windowscodecs/tests enable_tests
|
||||
wine_fn_config_makefile dlls/windowscodecsext enable_windowscodecsext
|
||||
|
|
|
@ -3125,6 +3125,8 @@ WINE_CONFIG_MAKEFILE(dlls/windows.media.speech/tests)
|
|||
WINE_CONFIG_MAKEFILE(dlls/windows.media)
|
||||
WINE_CONFIG_MAKEFILE(dlls/windows.media/tests)
|
||||
WINE_CONFIG_MAKEFILE(dlls/windows.networking)
|
||||
WINE_CONFIG_MAKEFILE(dlls/windows.system.profile.systemmanufacturers)
|
||||
WINE_CONFIG_MAKEFILE(dlls/windows.system.profile.systemmanufacturers/tests)
|
||||
WINE_CONFIG_MAKEFILE(dlls/windowscodecs)
|
||||
WINE_CONFIG_MAKEFILE(dlls/windowscodecs/tests)
|
||||
WINE_CONFIG_MAKEFILE(dlls/windowscodecsext)
|
||||
|
|
|
@ -0,0 +1,8 @@
|
|||
MODULE = windows.system.profile.systemmanufacturers.dll
|
||||
IMPORTS = combase
|
||||
|
||||
C_SRCS = \
|
||||
main.c
|
||||
|
||||
IDL_SRCS = \
|
||||
classes.idl
|
23
dlls/windows.system.profile.systemmanufacturers/classes.idl
Normal file
23
dlls/windows.system.profile.systemmanufacturers/classes.idl
Normal file
|
@ -0,0 +1,23 @@
|
|||
/*
|
||||
* Runtime Classes for windows.system.profile.systemmanufacturers.dll
|
||||
*
|
||||
* Copyright (C) 2022 Mohamad Al-Jaf
|
||||
*
|
||||
* 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
|
||||
*/
|
||||
|
||||
#pragma makedep register
|
||||
|
||||
#include "windows.system.profile.systemmanufacturers.idl"
|
148
dlls/windows.system.profile.systemmanufacturers/main.c
Normal file
148
dlls/windows.system.profile.systemmanufacturers/main.c
Normal file
|
@ -0,0 +1,148 @@
|
|||
/* WinRT Windows.System.Profile.SystemManufacturers Implementation
|
||||
*
|
||||
* Copyright (C) 2022 Mohamad Al-Jaf
|
||||
*
|
||||
* 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 "initguid.h"
|
||||
#include "private.h"
|
||||
|
||||
#include "wine/debug.h"
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(smbios);
|
||||
|
||||
static const char *debugstr_hstring( HSTRING hstr )
|
||||
{
|
||||
const WCHAR *str;
|
||||
UINT32 len;
|
||||
if (hstr && !((ULONG_PTR)hstr >> 16)) return "(invalid)";
|
||||
str = WindowsGetStringRawBuffer(hstr, &len);
|
||||
return wine_dbgstr_wn(str, len);
|
||||
}
|
||||
|
||||
struct smbios_statics
|
||||
{
|
||||
IActivationFactory IActivationFactory_iface;
|
||||
LONG ref;
|
||||
};
|
||||
|
||||
static inline struct smbios_statics *impl_from_IActivationFactory( IActivationFactory *iface )
|
||||
{
|
||||
return CONTAINING_RECORD( iface, struct smbios_statics, IActivationFactory_iface );
|
||||
}
|
||||
|
||||
static HRESULT WINAPI factory_QueryInterface( IActivationFactory *iface, REFIID iid, void **out )
|
||||
{
|
||||
struct smbios_statics *impl = impl_from_IActivationFactory( iface );
|
||||
|
||||
TRACE( "iface %p, iid %s, out %p.\n", iface, debugstr_guid( iid ), out );
|
||||
|
||||
if (IsEqualGUID( iid, &IID_IUnknown ) ||
|
||||
IsEqualGUID( iid, &IID_IInspectable ) ||
|
||||
IsEqualGUID( iid, &IID_IAgileObject ) ||
|
||||
IsEqualGUID( iid, &IID_IActivationFactory ))
|
||||
{
|
||||
*out = &impl->IActivationFactory_iface;
|
||||
IInspectable_AddRef( *out );
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
FIXME( "%s not implemented, returning E_NOINTERFACE.\n", debugstr_guid( iid ) );
|
||||
*out = NULL;
|
||||
return E_NOINTERFACE;
|
||||
}
|
||||
|
||||
static ULONG WINAPI factory_AddRef( IActivationFactory *iface )
|
||||
{
|
||||
struct smbios_statics *impl = impl_from_IActivationFactory( iface );
|
||||
ULONG ref = InterlockedIncrement( &impl->ref );
|
||||
TRACE( "iface %p, ref %lu.\n", iface, ref );
|
||||
return ref;
|
||||
}
|
||||
|
||||
static ULONG WINAPI factory_Release( IActivationFactory *iface )
|
||||
{
|
||||
struct smbios_statics *impl = impl_from_IActivationFactory( iface );
|
||||
ULONG ref = InterlockedDecrement( &impl->ref );
|
||||
TRACE( "iface %p, ref %lu.\n", iface, ref );
|
||||
return ref;
|
||||
}
|
||||
|
||||
static HRESULT WINAPI 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 factory_GetRuntimeClassName( IActivationFactory *iface, HSTRING *class_name )
|
||||
{
|
||||
FIXME( "iface %p, class_name %p stub!\n", iface, class_name );
|
||||
return E_NOTIMPL;
|
||||
}
|
||||
|
||||
static HRESULT WINAPI factory_GetTrustLevel( IActivationFactory *iface, TrustLevel *trust_level )
|
||||
{
|
||||
FIXME( "iface %p, trust_level %p stub!\n", iface, trust_level );
|
||||
return E_NOTIMPL;
|
||||
}
|
||||
|
||||
static HRESULT WINAPI factory_ActivateInstance( IActivationFactory *iface, IInspectable **instance )
|
||||
{
|
||||
FIXME( "iface %p, instance %p stub!\n", iface, instance );
|
||||
return E_NOTIMPL;
|
||||
}
|
||||
|
||||
static const struct IActivationFactoryVtbl factory_vtbl =
|
||||
{
|
||||
factory_QueryInterface,
|
||||
factory_AddRef,
|
||||
factory_Release,
|
||||
/* IInspectable methods */
|
||||
factory_GetIids,
|
||||
factory_GetRuntimeClassName,
|
||||
factory_GetTrustLevel,
|
||||
/* IActivationFactory methods */
|
||||
factory_ActivateInstance,
|
||||
};
|
||||
|
||||
static struct smbios_statics smbios_statics =
|
||||
{
|
||||
{&factory_vtbl},
|
||||
1,
|
||||
};
|
||||
|
||||
static IActivationFactory *smbios_factory = &smbios_statics.IActivationFactory_iface;
|
||||
|
||||
HRESULT WINAPI DllGetClassObject( REFCLSID clsid, REFIID riid, void **out )
|
||||
{
|
||||
FIXME( "clsid %s, riid %s, out %p stub!\n", debugstr_guid(clsid), debugstr_guid(riid), out );
|
||||
return CLASS_E_CLASSNOTAVAILABLE;
|
||||
}
|
||||
|
||||
HRESULT WINAPI DllGetActivationFactory( HSTRING classid, IActivationFactory **factory )
|
||||
{
|
||||
const WCHAR *name = WindowsGetStringRawBuffer( classid, NULL );
|
||||
|
||||
TRACE( "classid %s, factory %p.\n", debugstr_hstring(classid), factory );
|
||||
|
||||
*factory = NULL;
|
||||
|
||||
if (!wcscmp( name, RuntimeClass_Windows_System_Profile_SystemManufacturers_SmbiosInformation ))
|
||||
IActivationFactory_QueryInterface( smbios_factory, &IID_IActivationFactory, (void **)factory );
|
||||
|
||||
if (*factory) return S_OK;
|
||||
return CLASS_E_CLASSNOTAVAILABLE;
|
||||
}
|
31
dlls/windows.system.profile.systemmanufacturers/private.h
Normal file
31
dlls/windows.system.profile.systemmanufacturers/private.h
Normal file
|
@ -0,0 +1,31 @@
|
|||
/* WinRT Windows.System.Profile.SystemManufacturers Implementation
|
||||
*
|
||||
* Copyright (C) 2022 Mohamad Al-Jaf
|
||||
*
|
||||
* 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 <stdarg.h>
|
||||
#include <stddef.h>
|
||||
|
||||
#define COBJMACROS
|
||||
#include "windef.h"
|
||||
#include "winbase.h"
|
||||
#include "winstring.h"
|
||||
|
||||
#include "activation.h"
|
||||
|
||||
#define WIDL_using_Windows_System_Profile_SystemManufacturers
|
||||
#include "windows.system.profile.systemmanufacturers.h"
|
|
@ -0,0 +1,5 @@
|
|||
TESTDLL = windows.system.profile.systemmanufacturers.dll
|
||||
IMPORTS = combase
|
||||
|
||||
C_SRCS = \
|
||||
smbios.c
|
|
@ -0,0 +1,83 @@
|
|||
/*
|
||||
* Copyright (C) 2022 Mohamad Al-Jaf
|
||||
*
|
||||
* 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
|
||||
*/
|
||||
#define COBJMACROS
|
||||
#include "initguid.h"
|
||||
#include <stdarg.h>
|
||||
|
||||
#include "windef.h"
|
||||
#include "winbase.h"
|
||||
#include "winstring.h"
|
||||
|
||||
#include "roapi.h"
|
||||
|
||||
#define WIDL_using_Windows_System_Profile_SystemManufacturers
|
||||
#include "windows.system.profile.systemmanufacturers.h"
|
||||
|
||||
#include "wine/test.h"
|
||||
|
||||
#define check_interface( obj, iid ) check_interface_( __LINE__, obj, iid )
|
||||
static void check_interface_( unsigned int line, void *obj, const IID *iid )
|
||||
{
|
||||
IUnknown *iface = obj;
|
||||
IUnknown *unk;
|
||||
HRESULT hr;
|
||||
|
||||
hr = IUnknown_QueryInterface( iface, iid, (void **)&unk );
|
||||
ok_(__FILE__, line)( hr == S_OK, "got hr %#lx.\n", hr );
|
||||
IUnknown_Release( unk );
|
||||
}
|
||||
|
||||
static void test_Smbios_Statics(void)
|
||||
{
|
||||
static const WCHAR *smbios_statics_name = L"Windows.System.Profile.SystemManufacturers.SmbiosInformation";
|
||||
IActivationFactory *factory;
|
||||
HSTRING str;
|
||||
HRESULT hr;
|
||||
LONG ref;
|
||||
|
||||
hr = WindowsCreateString( smbios_statics_name, wcslen( smbios_statics_name ), &str );
|
||||
ok( hr == S_OK, "got hr %#lx.\n", hr );
|
||||
|
||||
hr = RoGetActivationFactory( str, &IID_IActivationFactory, (void **)&factory );
|
||||
WindowsDeleteString( str );
|
||||
ok( hr == S_OK || broken( hr == REGDB_E_CLASSNOTREG ), "got hr %#lx.\n", hr );
|
||||
if (hr == REGDB_E_CLASSNOTREG)
|
||||
{
|
||||
win_skip( "%s runtimeclass not registered, skipping tests.\n", wine_dbgstr_w( smbios_statics_name ) );
|
||||
return;
|
||||
}
|
||||
|
||||
check_interface( factory, &IID_IUnknown );
|
||||
check_interface( factory, &IID_IInspectable );
|
||||
check_interface( factory, &IID_IAgileObject );
|
||||
|
||||
ref = IActivationFactory_Release( factory );
|
||||
ok( ref == 1, "got ref %ld.\n", ref );
|
||||
}
|
||||
|
||||
START_TEST(smbios)
|
||||
{
|
||||
HRESULT hr;
|
||||
|
||||
hr = RoInitialize( RO_INIT_MULTITHREADED );
|
||||
ok( hr == S_OK, "RoInitialize failed, hr %#lx\n", hr );
|
||||
|
||||
test_Smbios_Statics();
|
||||
|
||||
RoUninitialize();
|
||||
}
|
|
@ -0,0 +1,3 @@
|
|||
@ stdcall -private DllGetActivationFactory(ptr ptr)
|
||||
@ stdcall -private DllCanUnloadNow()
|
||||
@ stdcall -private DllGetClassObject(ptr ptr ptr)
|
Loading…
Add table
Reference in a new issue