[DXDIAG] Fix blank system and BIOS values
[reactos.git] / base / applications / dxdiag / precomp.h
index 35d0cb2..4e16e04 100644 (file)
@@ -5,7 +5,7 @@
 #define DIRECTSOUND_VERSION 0x0800
 #define D3D_OVERLOADS
 
-#include <stdio.h>
+#include <stdarg.h>
 
 #define WIN32_NO_STATUS
 #define _INC_WINDOWS
 #include <windef.h>
 #include <winbase.h>
 #include <winreg.h>
-#include <winsvc.h>
 #include <wingdi.h>
 #include <winnls.h>
-#include <winver.h>
 #include <winuser.h>
-#include <mmsystem.h>
 #include <setupapi.h>
 #include <ddraw.h>
 #include <initguid.h>
 #include <devguid.h>
-#include <mmreg.h>
+#include <strsafe.h>
+#include <udmihelp.h>
+#include <dmilib.h>
 
 #include "resource.h"
 
@@ -42,6 +41,9 @@ typedef struct
 /* globals */
 extern HINSTANCE hInst;
 
+/* theming hack */
+BOOL EnableDialogTheme(HWND hwnd);
+
 /* dialog wnd proc */
 INT_PTR CALLBACK SystemPageWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam);
 INT_PTR CALLBACK DisplayPageWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam);
@@ -70,4 +72,5 @@ BOOL GetCatFileFromDriverPath(LPWSTR szFileName, LPWSTR szCatFileName);
 BOOL GetRegValue(HKEY hBaseKey, LPWSTR SubKey, LPWSTR ValueName, DWORD Type, LPWSTR Result, DWORD Size);
 VOID InsertTabCtrlItem(HWND hDlgCtrl, INT Position, LPWSTR uId);
 VOID EnumerateDrivers(PVOID Context, HDEVINFO hList, PSP_DEVINFO_DATA pInfoData);
-#endif
+
+#endif /* PRECOMP_H__ */