C
#define WndGetText(pW) pW->pText
Overview
This macro returns the address of the current text string used for the title bar.
Input Parameters
Input Parameters |
Description |
pW |
Pointer to the object |
Returns
Returns pointer to the text string being used.
Preconditions
none
Side Effects
none
Example
WINDOW *pWindow;
XCHAR textUsed = “USE THIS!”;
if (WndGetText(pWindow) == NULL)
WndSetText(&textUsed);