1
0
mirror of https://github.com/wine-mirror/wine synced 2024-06-29 06:14:34 +00:00

wmic: Add csproduct and systemenclosure aliases.

This commit is contained in:
Hans Leidekker 2024-06-03 09:41:37 +02:00 committed by Alexandre Julliard
parent a293b2f23a
commit cd780fe609

View File

@ -47,6 +47,7 @@ alias_map[] =
{ L"bios", L"Win32_BIOS" },
{ L"computersystem", L"Win32_ComputerSystem" },
{ L"cpu", L"Win32_Processor" },
{ L"csproduct", L"Win32_ComputerSystemProduct" },
{ L"diskdrive", L"Win32_DiskDrive" },
{ L"logicaldisk", L"Win32_LogicalDisk" },
{ L"memorychip", L"Win32_PhysicalMemory" },
@ -54,6 +55,7 @@ alias_map[] =
{ L"nicconfig", L"Win32_NetworkAdapterConfiguration" },
{ L"os", L"Win32_OperatingSystem" },
{ L"process", L"Win32_Process" },
{ L"systemenclosure", L"Win32_SystemEnclosure" },
};
static const WCHAR *find_class( const WCHAR *alias )