[CMAKE]
[reactos.git] / subsystems / win32 / win32k / include / win32kp.h
index 8bcf046..7c79d89 100644 (file)
 #pragma once
 #define INTERNAL_CALL APIENTRY
 
+#ifndef _MSC_VER
+#define PLACE_IN_SECTION(s) __attribute__((section(s)))
+#define INIT_FUNCTION PLACE_IN_SECTION("INIT")
+#else
+#define INIT_FUNCTION
+#endif
+
+/* Enable debugging features */
+#define GDI_DEBUG 0
+#define DBG_ENABLE_EVENT_LOGGING 0
+#define DBG_ENABLE_SERVICE_HOOKS 0
+
 /* Internal Win32k Headers */
 #include <include/accelerator.h>
 #include <include/clipboard.h>
@@ -29,7 +41,6 @@
 #include <include/dib.h>
 #include <include/driver.h>
 #include <include/driverobj.h>
-#include <include/error.h>
 #include <include/floatobj.h>
 #include <include/gdiobj.h>
 #include <include/palette.h>
@@ -81,3 +92,4 @@
 #include <include/ldevobj.h>
 #include <include/device.h>
 #include <dib/dib.h>
+#include <include/gdidebug.h>