[SYSDM] Fix Re-sizing License Prompt (#1789)
[reactos.git] / dll / cpl / openglcfg / openglcfg.h
1 #ifndef _OPENGLCFG_PCH_
2 #define _OPENGLCFG_PCH_
3
4 #include <stdarg.h>
5 #define WIN32_NO_STATUS
6 #include <windef.h>
7 #include <winbase.h>
8 #include <winuser.h>
9 #include <commctrl.h>
10 #include <strsafe.h>
11
12 #include "resource.h"
13
14 #define MAX_KEY_LENGTH 256
15
16 #define RENDERER_DEFAULT 0
17 #define RENDERER_RSWR 1
18
19 #define DEBUG_SET 1
20 #define DEBUG_CLEAR 2
21
22 #define KEY_RENDERER L"Software\\ReactOS\\OpenGL"
23 #define KEY_DRIVERS L"Software\\Microsoft\\Windows NT\\CurrentVersion\\OpenGLDrivers"
24 #define KEY_DEBUG_CHANNEL L"System\\CurrentControlSet\\Control\\Session Manager\\Environment"
25
26 INT_PTR CALLBACK GeneralPageProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
27
28 extern HINSTANCE hApplet;
29
30 #endif /* _OPENGLCFG_PCH_ */