Share via


GetAuxTabInfo (Compact 7)

3/12/2014

This function returns information about the additional property pages that the OEM added to the Windows Embedded Compact Terminal Services Client (CETSC) user interface (UI).

This function is implemented by the OEM and called internally by cetsc.exe to obtain the information about additional property pages.

Syntax

EXTERN_C HRESULT WINAPI GetAuxTabInfo(
    PRDP_TAB_INFO pTab
);

Parameters

Parameter Description

pTab

[in] Pointer to an empty array of RDP_TAB_INFO structures that on return will contain information about the additional property pages, also known as auxiliary tabs.

Return Value

Returns S_OK if it is successful. Returns ERROR_INVALIDPARAMETER if pTab is NULL.

Remarks

If the OEM is creating additional property pages for CETSC UI, the OEM must modify this function implementation by creating a new member of the RDP_TAB_INFO array for each new property page, and filling each member with information about each new page.

Example

The following example code shows you how to create a new member of the RDP_TAB_INFO array and fill it in with information about a property page called Aux1.

pTab[0].uTemplateId = TSC_IDD_PROPPAGE_AUX1;
pTab[0].pDlgProc = OemProcAux1;
StringCchCopy(pTab[0].szTabName, MAX_PATH, L"Tab 1");

See Also

Reference

CETSC UI Functions