summaryrefslogtreecommitdiffstats
path: root/private/windows/gina/userenv/debug.h
diff options
context:
space:
mode:
Diffstat (limited to 'private/windows/gina/userenv/debug.h')
-rw-r--r--private/windows/gina/userenv/debug.h51
1 files changed, 51 insertions, 0 deletions
diff --git a/private/windows/gina/userenv/debug.h b/private/windows/gina/userenv/debug.h
new file mode 100644
index 000000000..32223782c
--- /dev/null
+++ b/private/windows/gina/userenv/debug.h
@@ -0,0 +1,51 @@
+//*************************************************************
+//
+// Debugging functions header file
+//
+// Microsoft Confidential
+// Copyright (c) Microsoft Corporation 1995
+// All rights reserved
+//
+//*************************************************************
+
+#if DBG
+
+//
+// Debug Levels
+//
+
+#define DL_NONE 0x00000000
+#define DL_NORMAL 0x00000001
+#define DL_VERBOSE 0x00000002
+#define DL_LOGFILE 0x00010000
+
+
+//
+// Debug message types
+//
+
+#define DM_WARNING 0
+#define DM_ASSERT 1
+#define DM_VERBOSE 2
+
+
+//
+// Debug macros
+//
+
+#define DebugMsg(x) _DebugMsg x
+
+
+//
+// Debug function proto-types
+//
+
+void _DebugMsg(UINT mask, LPCTSTR pszMsg, ...);
+void InitDebugSupport(void);
+
+#else
+
+#define DebugMsg(x)
+
+
+#endif // DBG