Functions | |
int | ADL_Display_CustomizedModeListNum_Get (int iAdapterIndex, int iDisplayIndex, int *lpListNum) |
Function to retrieve the number of customized modes. | |
int | ADL_Display_CustomizedModeList_Get (int iAdapterIndex, int iDisplayIndex, ADLCustomMode *lpCustomModeList, int iBuffSize) |
Function to retrieve the customized mode list. | |
int | ADL_Display_CustomizedMode_Add (int iAdapterIndex, int iDisplayIndex, ADLCustomMode customMode) |
Function to add a customized mode. | |
int | ADL_Display_CustomizedMode_Delete (int iAdapterIndex, int iDisplayIndex, int iIndex) |
Function to delete a customized mode. | |
int | ADL_Display_CustomizedMode_Validate (int iAdapterIndex, int iDisplayIndex, ADLCustomMode customMode, int *lpValid) |
Function to validate a customized mode. |
int ADL_Display_CustomizedModeListNum_Get | ( | int | iAdapterIndex, | |
int | iDisplayIndex, | |||
int * | lpListNum | |||
) |
Function to retrieve the number of customized modes.
This function retrieves the number of customized modes for a specified display.
[in] | iAdapterIndex | The ADL index handle of the desired adapter. |
[in] | iDisplayIndex | The desired display index. It can be retrieved from the ADLDisplayInfo data structure. |
[out] | lpListNum | The pointer to the number of available modes. |
int ADL_Display_CustomizedModeList_Get | ( | int | iAdapterIndex, | |
int | iDisplayIndex, | |||
ADLCustomMode * | lpCustomModeList, | |||
int | iBuffSize | |||
) |
Function to retrieve the customized mode list.
This function retrieves the customized mode list for a specified display.
[in] | iAdapterIndex | The ADL index handle of the desired adapter. |
[in] | iDisplayIndex | The desired display index. It can be retrieved from the ADLDisplayInfo data structure. |
[out] | lpCustomModeList | The pointer to the list of the returned ADLCustomMode structures. The user should allocate the memory: Number of modes * sizeof ( ADLCustomMode ) |
[in] | iBuffSize | The size of the lpCustomModelist buffer. |
int ADL_Display_CustomizedMode_Add | ( | int | iAdapterIndex, | |
int | iDisplayIndex, | |||
ADLCustomMode | customMode | |||
) |
Function to add a customized mode.
This function adds a custom mode to the customized mode list.
[in] | iAdapterIndex | The ADL index handle of the desired adapter. |
[in] | iDisplayIndex | The desired display index. It can be retrieved from the ADLDisplayInfo data structure. |
[in] | customMode | The custom mode to be added to the list. |
int ADL_Display_CustomizedMode_Delete | ( | int | iAdapterIndex, | |
int | iDisplayIndex, | |||
int | iIndex | |||
) |
Function to delete a customized mode.
This function deletes a custom mode from the customized mode list.
[in] | iAdapterIndex | The ADL index handle of the desired adapter. |
[in] | iDisplayIndex | The desired display index. It can be retrieved from the ADLDisplayInfo data structure. |
[in] | iIndex | The index value of the mode to be deleted. |
int ADL_Display_CustomizedMode_Validate | ( | int | iAdapterIndex, | |
int | iDisplayIndex, | |||
ADLCustomMode | customMode, | |||
int * | lpValid | |||
) |
Function to validate a customized mode.
This function validates a custom mode from the customized mode list.
[in] | iAdapterIndex | The ADL index handle of the desired adapter. |
[in] | iDisplayIndex | The desired display index. It can be retrieved from the ADLDisplayInfo data structure. |
[in] | customMode | The custom mode to be validated. |
[out] | lpValid | The pointer to the retrieved validation bit. |