[HEADERS]
[reactos.git] / reactos / base / applications / dxdiag / help.c
1 /*
2 * PROJECT: ReactX Diagnosis Application
3 * LICENSE: LGPL - See COPYING in the top level directory
4 * FILE: base/applications/dxdiag/dxdiag.c
5 * PURPOSE: ReactX diagnosis help page
6 * COPYRIGHT: Copyright 2008 Johannes Anderwald
7 *
8 */
9
10 #include "precomp.h"
11
12 INT_PTR CALLBACK
13 HelpPageWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
14 {
15 UNREFERENCED_PARAMETER(lParam);
16 UNREFERENCED_PARAMETER(wParam);
17 switch (message) {
18 case WM_INITDIALOG:
19 {
20 SetWindowPos(hDlg, NULL, 10, 32, 0, 0, SWP_NOACTIVATE | SWP_NOOWNERZORDER | SWP_NOSIZE | SWP_NOZORDER);
21 return TRUE;
22 }
23 }
24
25 return FALSE;
26 }