-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathTailLight.mof
More file actions
24 lines (18 loc) · 767 Bytes
/
TailLight.mof
File metadata and controls
24 lines (18 loc) · 767 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#PRAGMA AUTORECOVER
// Documentation resources:
// https://learn.microsoft.com/en-us/windows/win32/wmisdk/mof-data-types
// https://learn.microsoft.com/en-us/windows-hardware/drivers/kernel/wmi-class-qualifiers
// https://learn.microsoft.com/en-us/windows-hardware/drivers/kernel/wmi-property-qualifiers
[Dynamic, Provider("WMIProv"), WMI,
Description("TailLight driver information"),
guid("{07982702-2086-4B83-9444-34989BB10554}")]
class TailLightDeviceInformation {
[key, read]
string InstanceName;
[read]
boolean Active;
[WmiDataId(1), read, write, Description("Tail-light in RGB COLORREF format.")]
uint32 TailLight;
[WmiMethodId(1), Implemented, Description("Trigger HW self-test")]
void SelfTest([out] sint32 result);
};