another hack to get reactos to build again
[reactos.git] / reactos / drivers / video / displays / framebuf / framebuf.h
index 2cb3577..5af621a 100644 (file)
 #ifndef FRAMEBUF_H
 #define FRAMEBUF_H
 
+#include <stdarg.h>
 #include <windef.h>
+#include <guiddef.h>
 #include <wingdi.h>
 #include <ddk/winddi.h>
+#include <winioctl.h>
 #include <ddk/ntddvdeo.h>
 
+#define DDKAPI __stdcall
+#define DDKFASTAPI __fastcall
+#define FASTCALL __fastcall
+#define DDKCDECLAPI __cdecl
 //#define EXPERIMENTAL_MOUSE_CURSOR_SUPPORT
 
 typedef struct _PDEV
@@ -56,6 +63,8 @@ typedef struct _PDEV
 #endif
 } PDEV, *PPDEV;
 
+#define TAG(A, B, C, D) (ULONG)(((A)<<0) + ((B)<<8) + ((C)<<16) + ((D)<<24))
+
 #define DEVICE_NAME    L"framebuf"
 #define ALLOC_TAG      TAG('F','B','U','F')