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.

64 lines
1.7 KiB

  1. /*++
  2. Copyright (c) 1994 Microsoft Corporation
  3. Module Name:
  4. inetinfo.h
  5. Abstract:
  6. This file contains the internet info server admin APIs.
  7. Added Normandy specific stuff.
  8. Author:
  9. Madan Appiah (madana) 10-Oct-1995
  10. Revision History:
  11. Madana 10-Oct-1995 Made a new copy for product split from inetasrv.h
  12. MuraliK 12-Oct-1995 Fixes to support product split
  13. MuraliK 15-Nov-1995 Support Wide Char interface names
  14. --*/
  15. #ifndef _NORMINFO_H_
  16. #define _NORMINFO_H_
  17. /////////////////////////////////////////////////////////////////////////
  18. // //
  19. // NNTP specific items //
  20. // //
  21. /////////////////////////////////////////////////////////////////////////
  22. //
  23. // Service name.
  24. //
  25. # define NNTP_SERVICE_NAME TEXT("NNTPSVC")
  26. # define NNTP_SERVICE_NAME_A "NNTPSVC"
  27. # define NNTP_SERVICE_NAME_W L"NNTPSVC"
  28. //
  29. // Client Interface Name for RPC connections over named pipes
  30. //
  31. # define NNTP_INTERFACE_NAME NNTP_SERVICE_NAME
  32. # define NNTP_NAMED_PIPE TEXT("\\PIPE\\") ## NNTP_INTERFACE_NAME
  33. # define NNTP_NAMED_PIPE_W L"\\PIPE\\" ## NNTP_SERVICE_NAME_W
  34. //
  35. // Service location stuff
  36. //
  37. #define INET_NNTP_SVCLOC_ID (ULONGLONG)(0x0000000000000008)
  38. #if 0
  39. #define METACACHE_NNTP_SERVER_ID 3
  40. #define METACACHE_SMTP_SERVER_ID 4
  41. #define METACACHE_POP3_SERVER_ID 5
  42. #define METACACHE_IMAP_SERVER_ID 6
  43. #endif
  44. #endif // _NORMINFO_H_