summaryrefslogtreecommitdiffstats
path: root/private/inc/prefix.h
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/inc/prefix.h
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/inc/prefix.h')
-rw-r--r--private/inc/prefix.h63
1 files changed, 63 insertions, 0 deletions
diff --git a/private/inc/prefix.h b/private/inc/prefix.h
new file mode 100644
index 000000000..e9b94b896
--- /dev/null
+++ b/private/inc/prefix.h
@@ -0,0 +1,63 @@
+/*++
+
+Copyright (c) 1992 Microsoft Corporation
+
+Module Name:
+
+ Prefix.h
+
+Abstract:
+
+ This header file declares equates for debug print "prefix" strings.
+ For the moment, these are of the form:
+
+ #define PREFIX_NETLIB "NETLIB: "
+
+ These are collected into a header file in case someone decides to
+ change the look of these strings, or internationalize them, or
+ whatever.
+
+Author:
+
+ John Rogers (JohnRo) 08-May-1992
+
+Environment:
+
+ Portable to just about any computer I ever saw. --JR
+
+Revision History:
+
+ 08-May-1992 JohnRo
+ Created.
+ 27-May-1992 JohnRo
+ Added PREFIX_SC and PREFIX_SC_CLIENT for service controller.
+ Added PREFIX_PORTUAS for PortUAS utility (run during setup).
+ 07-Aug-1992 JohnRo
+ RAID 1895: Net APIs and svc should use OEM char set (not ANSI).
+ (Added PREFIX_XACTSRV as part of support for that.)
+ 16-Aug-1992 JohnRo
+ RAID 2920: Support UTC timezone in net code.
+
+--*/
+
+
+#ifndef _PREFIX_
+#define _PREFIX_
+
+
+#define PREFIX_NETAPI "NETAPI32: "
+#define PREFIX_NETLIB "NETLIB: "
+#define PREFIX_NETLOGON "NETLOGON: "
+#define PREFIX_NETRAP "NETRAP: "
+#define PREFIX_PORTUAS "PORTUAS: "
+#define PREFIX_REPL "REPL: "
+#define PREFIX_REPL_CLIENT "REPL-CLIENT: "
+#define PREFIX_REPL_MASTER "REPL-MASTER: "
+#define PREFIX_SC "SC: "
+#define PREFIX_SC_CLIENT "SC-CLIENT: "
+#define PREFIX_WKSTA "WKSTA: "
+#define PREFIX_XACTSRV "XACTSRV: "
+
+
+
+#endif // ndef _PREFIX_