Microsoft Windows CE 3.0  

DirectDraw Applications and Window Styles

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.

If your application uses DirectDraw in windowed mode, you can create windows with any window style. However, full-screen exclusive mode applications cannot be created with the WS_EX_TOOLWINDOW style without risk of unpredictable behavior. The WS_EX_TOOLWINDOW style prevents a window from being the top most window, which is required for a DirectDraw full-screen, exclusive mode application.

Full-screen exclusive mode applications should use the WS_EX_TOPMOST extended window style and the WS_VISIBLE window style to display properly. These styles keep the application at the front of the window z-order and prevent GDI from drawing on the primary surface.

The following example shows one way to safely prepare a window to be used in a full-screen, exclusive mode application.

//////////////////////////////////////////////////////// //
Register the window class, display the window, and init // all
DirectX and graphic objects.
//////////////////////////////////////////////////////// BOOL
WINAPI InitApp(INT nWinMode) { WNDCLASSEX wcex; wcex.cbSize =
sizeof(WNDCLASSEX); wcex.hInstance = g_hinst; wcex.lpszClassName =
g_szWinName; wcex.lpfnWndProc = WndProc; wcex.style =
CS_VREDRAW|CS_HREDRAW|CS_DBLCLKS; wcex.hIcon = LoadIcon (NULL,
IDI_APPLICATION); wcex.hIconSm = LoadIcon (NULL, IDI_WINLOGO);
wcex.hCursor = LoadCursor (NULL, IDC_ARROW); wcex.lpszMenuName =
MAKEINTRESOURCE(IDR_APPMENU); wcex.cbClsExtra = 0 ; wcex.cbWndExtra
= 0 ; wcex.hbrBackground = GetStockObject (NULL_BRUSH);
RegisterClassEx(&wcex); g_hwndMain = CreateWindowEx(
WS_EX_TOPMOST, g_szWinName, g_szWinCaption, WS_VISIBLE|WS_POPUP,
0,0,CX_SCREEN,CY_SCREEN, NULL, NULL, g_hinst, NULL);
if(!g_hwndMain) return(FALSE); SetFocus(g_hwndMain);
ShowWindow(g_hwndMain, nWinMode); UpdateWindow(g_hwndMain); return
TRUE; }


 Last updated on Tuesday, May 18, 2004

© 2004 Microsoft Corporation. All rights reserved. 500 Internal Server Error

Internal Server Error

The server encountered an internal error or misconfiguration and was unable to complete your request.

Please contact the server administrator at webmaster@systemmanager.forsenergy.ru to inform them of the time this error occurred, and the actions you performed just before this error.

More information about this error may be available in the server error log.

Additionally, a 500 Internal Server Error error was encountered while trying to use an ErrorDocument to handle the request.