69 lines
2.3 KiB
Plaintext
69 lines
2.3 KiB
Plaintext
// Copyright (c) 2007-2010, Intel Corporation. All rights reserved.
|
|
[Version ( "8.0.0" ),
|
|
Description (
|
|
"The IPS_ScreenSettingData class represents "
|
|
"Extended Displays Configuration settings for KVM "
|
|
"redirection service in the Intel(R) AMT." )]
|
|
class IPS_ScreenSettingData: CIM_SettingData {
|
|
|
|
|
|
[Description (
|
|
"The display with the start button. When working in "
|
|
"extended display mode, this display have (0,0) "
|
|
"coordinates as left-upper corner" ),
|
|
ValueMap { "0", "1", "2", "3", "4", "5..254", "255" },
|
|
Values { "NoDisplay", "PipeA", "PipeB","PipeC","PipeD", "Reserved", "Unknown" }]
|
|
uint8 PrimaryIndex;
|
|
|
|
[Description (
|
|
"The secondary display according to GFX driver "),
|
|
ValueMap { "0", "1", "2", "3", "4", "5..254", "255" },
|
|
Values { "NoDisplay", "PipeA", "PipeB","PipeC","PipeD", "Reserved", "Unknown" }]
|
|
uint8 SecondaryIndex;
|
|
|
|
[Description (
|
|
"The tertiary display according to GFX driver "),
|
|
ValueMap { "0", "1", "2", "3", "4", "5..254", "255" },
|
|
Values { "NoDisplay", "PipeA", "PipeB","PipeC","PipeD", "Reserved", "Unknown" }]
|
|
uint8 TertiaryIndex;
|
|
|
|
[Description (
|
|
"The quadrary display according to GFX driver "),
|
|
ValueMap { "0", "1", "2", "3", "4", "5..254", "255" },
|
|
Values { "NoDisplay", "PipeA", "PipeB","PipeC","PipeD", "Reserved", "Unknown" }]
|
|
uint8 QuadraryIndex;
|
|
|
|
[Description ( "Represent if screen[i] is present" )]
|
|
boolean IsActive[];
|
|
|
|
|
|
[Description ( "Upper left X coordinate of screen[i]. "
|
|
"Shall be set to 0 for primary display."
|
|
"Can be negative" )]
|
|
sint32 UpperLeftX[];
|
|
|
|
|
|
[Description ( "Upper left Y coordinate of screen[i]. "
|
|
"Shall be set to 0 for primary display."
|
|
"Can be negative" )]
|
|
sint32 UpperLeftY[];
|
|
|
|
|
|
[Description ( "X resolution of screen[i]" )]
|
|
uint32 ResolutionX[];
|
|
|
|
|
|
[Description ( "Y resolution of screen[i]" )]
|
|
uint32 ResolutionY[];
|
|
|
|
|
|
|
|
[Description (
|
|
"This API resets the extended display configuration settings" ),
|
|
ValueMap { "0", "1" },
|
|
Values { "PT_STATUS_SUCCESS", "PT_STATUS_INTERNAL_ERROR" }]
|
|
uint32 ResetToDefault();
|
|
|
|
|
|
};
|