Microsoft Windows CE 3.0  

CBaseWindow::GetClassWindowStyles

Important:
This is retired content. This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This content may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist.

Retrieves class and window information.

virtual
LPTSTR
GetClassWindowStyles(
DWORD
*
pClassStyles
,
DWORD
*
pWindowStyles
,
DWORD
*
pWindowStylesEx
)
PURE;

Parameters

pClassStyles
Class styles.
pWindowStyles
Window styles.
pWindowStylesEx
Extended window styles.

Return Values

Returns a class name that is a static text string.

Remarks

A derived class must override this pure virtual member function to provide the default class and window styles for the window. The information the derived class returns is used in CBaseWindow::PrepareWindowwhen the window is first created. The class and window styles take the same parameters as their counterparts in the Microsoft Win32 CreateWindowExfunction. The string that is returned should be allocated as a static string and should still be valid after the member function returns.