Git conversion: Make reactos the root directory, move rosapps, rostests, wallpapers...
[reactos.git] / reactos / win32ss / drivers / displays / vga_new / debug.h
diff --git a/reactos/win32ss/drivers/displays/vga_new/debug.h b/reactos/win32ss/drivers/displays/vga_new/debug.h
deleted file mode 100644 (file)
index 0ea41ab..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-/*
- * PROJECT:         ReactOS VGA Display Driver
- * LICENSE:         Microsoft NT4 DDK Sample Code License
- * FILE:            win32ss/drivers/displays/vga_new/debug.h
- * PURPOSE:         Debug Support Header
- * PROGRAMMERS:     Copyright (c) 1992-1995 Microsoft Corporation
- */
-
-#if DBG
-
-VOID
-DebugPrint(
-    ULONG DebugPrintLevel,
-    PCHAR DebugMessage,
-    ...
-    );
-
-#define DISPDBG(arg) DebugPrint arg
-#define RIP(x) { DebugPrint(0, x); EngDebugBreak();}
-
-#else
-
-#define DISPDBG(arg)
-#define RIP(x)
-
-#endif