- implement system page
[reactos.git] / reactos / base / applications / dxdiag / precomp.h
1 #ifndef PRECOMP_H__
2 #define PRECOMP_H__
3
4 #include <stdio.h>
5 #include <windows.h>
6 #include <commctrl.h>
7
8 #include "resource.h"
9
10 typedef struct
11 {
12 HWND hDialogs[7];
13
14 }DXDIAG_CONTEXT, *PDXDIAG_CONTEXT;
15
16
17
18
19 /* globals */
20 extern HINSTANCE hInst;
21
22 /* dialog wnd proc */
23 INT_PTR CALLBACK SystemPageWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam);
24 INT_PTR CALLBACK DisplayPageWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam);
25 INT_PTR CALLBACK SoundPageWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam);
26 INT_PTR CALLBACK MusicPageWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam);
27 INT_PTR CALLBACK InputPageWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam);
28 INT_PTR CALLBACK NetworkPageWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam);
29 INT_PTR CALLBACK HelpPageWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam);
30
31
32 #endif