Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

63 lines
1.6 KiB

  1. /*++
  2. Copyright (c) 1992 Microsoft Corporation
  3. Module Name:
  4. Prefix.h
  5. Abstract:
  6. This header file declares equates for debug print "prefix" strings.
  7. For the moment, these are of the form:
  8. #define PREFIX_NETLIB "NETLIB: "
  9. These are collected into a header file in case someone decides to
  10. change the look of these strings, or internationalize them, or
  11. whatever.
  12. Author:
  13. John Rogers (JohnRo) 08-May-1992
  14. Environment:
  15. Portable to just about any computer I ever saw. --JR
  16. Revision History:
  17. 08-May-1992 JohnRo
  18. Created.
  19. 27-May-1992 JohnRo
  20. Added PREFIX_SC and PREFIX_SC_CLIENT for service controller.
  21. Added PREFIX_PORTUAS for PortUAS utility (run during setup).
  22. 07-Aug-1992 JohnRo
  23. RAID 1895: Net APIs and svc should use OEM char set (not ANSI).
  24. (Added PREFIX_XACTSRV as part of support for that.)
  25. 16-Aug-1992 JohnRo
  26. RAID 2920: Support UTC timezone in net code.
  27. --*/
  28. #ifndef _PREFIX_H_INCLUDED_
  29. #define _PREFIX_H_INCLUDED_
  30. #define PREFIX_NETAPI "NETAPI32: "
  31. #define PREFIX_NETLIB "NETLIB: "
  32. #define PREFIX_NETLOGON "NETLOGON: "
  33. #define PREFIX_NETRAP "NETRAP: "
  34. #define PREFIX_PORTUAS "PORTUAS: "
  35. #define PREFIX_REPL "REPL: "
  36. #define PREFIX_REPL_CLIENT "REPL-CLIENT: "
  37. #define PREFIX_REPL_MASTER "REPL-MASTER: "
  38. #define PREFIX_SC "SC: "
  39. #define PREFIX_SC_CLIENT "SC-CLIENT: "
  40. #define PREFIX_WKSTA "WKSTA: "
  41. #define PREFIX_XACTSRV "XACTSRV: "
  42. #endif // ndef _PREFIX_H_INCLUDED_