Source code of Windows XP (NT5)
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.

87 lines
4.5 KiB

  1. /**INC+**********************************************************************/
  2. /* */
  3. /* ndcgcnst.h */
  4. /* */
  5. /* DC-Groupware common constants - Windows NT specific header. */
  6. /* */
  7. /* Copyright(c) Microsoft 1996-1997 */
  8. /* */
  9. /****************************************************************************/
  10. /* Changes: */
  11. /* */
  12. // $Log: Y:/logs/h/dcl/ndcgcnst.h_v $
  13. //
  14. // Rev 1.4 27 Aug 1997 16:28:08 enh
  15. // SFR1189: Added command line registry session
  16. //
  17. // Rev 1.3 22 Aug 1997 10:23:06 SJ
  18. // SFR1316: Trace options in wrong place in the registry.
  19. //
  20. // Rev 1.2 23 Jul 1997 10:47:58 mr
  21. // SFR1079: Merged \server\h duplicates to \h\dcl
  22. //
  23. // Rev 1.1 19 Jun 1997 21:51:52 OBK
  24. // SFR0000: Start of RNS codebase
  25. /* */
  26. /**INC-**********************************************************************/
  27. #ifndef _H_NDCGCNST
  28. #define _H_NDCGCNST
  29. /****************************************************************************/
  30. /* */
  31. /* CONSTANTS */
  32. /* */
  33. /****************************************************************************/
  34. /****************************************************************************/
  35. /* Mutex and shared memory object names. */
  36. /****************************************************************************/
  37. #define TRC_MUTEX_NAME _T("TRCMutex")
  38. #define TRC_SHARED_DATA_NAME _T("TRCSharedDataName")
  39. #define TRC_TRACE_FILE_NAME _T("TRCTraceFileName")
  40. /****************************************************************************/
  41. /* Server registry prefix. */
  42. /****************************************************************************/
  43. #define DC_REG_PREFIX _T("SOFTWARE\\Microsoft\\Conferencing\\DCG\\")
  44. /****************************************************************************/
  45. /* ULS registry entry - for Microsoft's User Location Service */
  46. /****************************************************************************/
  47. #define REGKEY_ULS_USERDETAILS \
  48. "Software\\Microsoft\\User Location Service\\Client"
  49. #define REGVAL_ULS_NAME "User Name"
  50. /****************************************************************************/
  51. /* Location of comupter name in registry (used by TDD) */
  52. /****************************************************************************/
  53. #define REGVAL_COMPUTERNAME "ComputerName"
  54. #define REGKEY_COMPUTERNAME \
  55. "System\\CurrentControlSet\\control\\ComputerName\\ComputerName"
  56. /****************************************************************************/
  57. /* Registry keys for Modem TDD. */
  58. /****************************************************************************/
  59. #define REGKEY_CONF "SOFTWARE\\Microsoft\\Conferencing"
  60. #define REGVAL_USE_R11 "R11 Compatibility"
  61. #define REGVAL_AUTO_ANSWER "AutoAnswer"
  62. #define REGVAL_N_RINGS "nPickupRings"
  63. #define REGKEY_PSTN "SOFTWARE\\Microsoft\\Conferencing\\Transports\\PSTN"
  64. #define REGVAL_PROVNAME "Provider Name"
  65. /****************************************************************************/
  66. /* Null definitions. */
  67. /****************************************************************************/
  68. #define NULL_DCSURFACEID ((DCSURFACEID)0)
  69. #define NULL_SYSBITMAP NULL
  70. /****************************************************************************/
  71. /* Performance monitoring file and application names */
  72. /****************************************************************************/
  73. #define PERF_APP_NAME "DCG"
  74. #define DCG_PERF_INI_FILE "nprfini.ini"
  75. #define DCG_PERF_HDR_FILE "nprfincl.h"
  76. #endif /* _H_NDCGCNST */