summaryrefslogtreecommitdiffstats
path: root/private/ole32/dcomss/olescm/dbgprt.hxx
diff options
context:
space:
mode:
authorAdam <you@example.com>2020-05-17 05:51:50 +0200
committerAdam <you@example.com>2020-05-17 05:51:50 +0200
commite611b132f9b8abe35b362e5870b74bce94a1e58e (patch)
treea5781d2ec0e085eeca33cf350cf878f2efea6fe5 /private/ole32/dcomss/olescm/dbgprt.hxx
downloadNT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar
NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.gz
NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.bz2
NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.lz
NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.xz
NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.zst
NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.zip
Diffstat (limited to 'private/ole32/dcomss/olescm/dbgprt.hxx')
-rw-r--r--private/ole32/dcomss/olescm/dbgprt.hxx45
1 files changed, 45 insertions, 0 deletions
diff --git a/private/ole32/dcomss/olescm/dbgprt.hxx b/private/ole32/dcomss/olescm/dbgprt.hxx
new file mode 100644
index 000000000..c7cbbe218
--- /dev/null
+++ b/private/ole32/dcomss/olescm/dbgprt.hxx
@@ -0,0 +1,45 @@
+//+-------------------------------------------------------------------------
+//
+// Microsoft Windows
+// Copyright (C) Microsoft Corporation, 1992 - 1993.
+//
+// File: dbgprt.hxx
+//
+// Contents: Routines to make printing trace info for debugging easier
+//
+// History: 31-Jan-95 Ricksa Created
+//
+//--------------------------------------------------------------------------
+#ifndef __DBGINFO_HXX__
+#define __DBGINFO_HXX__
+
+#include <scm.h>
+#include <irot.h>
+
+#if DBG == 1
+
+WCHAR *FormatGuid(const GUID& rguid, WCHAR *pwszGuid);
+
+void DbgPrintFileTime(char *pszDesc, FILETIME *pfiletime);
+
+void DbgPrintGuid(char *pszDesc, const GUID *pguid);
+
+void DbgPrintIFD(char *pszDesc, InterfaceData *pifdObject);
+
+void DbgPrintMkIfList(char *pszDesc, MkInterfaceList **ppMkIFList);
+
+void DbgPrintMnkEqBuf(char *pszDesc, MNKEQBUF *pmkeqbuf);
+
+void DbgPrintRegIn(char *pszDesc, RegInput *pregin);
+
+void DbgPrintRegOut(char *pszDesc, RegOutput **ppreg);
+
+void DbgPrintRevokeClasses(char *pszDesc, RevokeClasses *prevcls);
+
+void DbgPrintScmRegKey(char *pszDesc, SCMREGKEY *psrkRegister);
+
+#else
+
+#endif // DBG == 1
+
+#endif // __DBGINFO_HXX__