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.

85 lines
4.6 KiB

  1. /****************************************************************************/
  2. /* */
  3. /* wdcgcnst.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/wdcgcnst.h_v $ */
  13. //
  14. // Rev 1.1 19 Jun 1997 14:29:30 ENH
  15. // Win16Port: Make compatible with 16 bit build
  16. /* */
  17. /****************************************************************************/
  18. #ifndef _H_WDCGCNST
  19. #define _H_WDCGCNST
  20. /****************************************************************************/
  21. /* */
  22. /* CONSTANTS */
  23. /* */
  24. /****************************************************************************/
  25. /****************************************************************************/
  26. /* Mutex and shared memory object names. */
  27. /****************************************************************************/
  28. #define TRC_MUTEX_NAME _T("TRCMutex")
  29. #define TRC_SHARED_DATA_NAME _T("TRCSharedDataName")
  30. #define TRC_TRACE_FILE_NAME _T("TRCTraceFileName")
  31. /****************************************************************************/
  32. /* Registry prefix. */
  33. /****************************************************************************/
  34. #define DC_REG_PREFIX _T("SOFTWARE\\Microsoft\\Conferencing\\DCG\\")
  35. /****************************************************************************/
  36. /* ULS registry entry - for Microsoft's User Location Service */
  37. /****************************************************************************/
  38. #define REGKEY_ULS_USERDETAILS \
  39. "Software\\Microsoft\\User Location Service\\Client"
  40. #define REGVAL_ULS_NAME "User Name"
  41. /****************************************************************************/
  42. /* Location of comupter name in registry (used by TDD) */
  43. /****************************************************************************/
  44. #define REGVAL_COMPUTERNAME "ComputerName"
  45. #define REGKEY_COMPUTERNAME \
  46. "System\\CurrentControlSet\\control\\ComputerName\\ComputerName"
  47. /****************************************************************************/
  48. /* Registry keys for Modem TDD. */
  49. /****************************************************************************/
  50. #define REGKEY_CONF "SOFTWARE\\Microsoft\\Conferencing"
  51. #define REGVAL_USE_R11 "R11 Compatibility"
  52. #define REGVAL_AUTO_ANSWER "AutoAnswer"
  53. #define REGVAL_N_RINGS "nPickupRings"
  54. #define REGKEY_PSTN "SOFTWARE\\Microsoft\\Conferencing\\Transports\\PSTN"
  55. #define REGVAL_PROVNAME "Provider Name"
  56. /****************************************************************************/
  57. /* Null definitions. */
  58. /****************************************************************************/
  59. #define NULL_SYSBITMAP NULL
  60. /****************************************************************************/
  61. /* Performance monitoring file and application names */
  62. /****************************************************************************/
  63. #define PERF_APP_NAME "DCG"
  64. #define DCG_PERF_INI_FILE "nprfini.ini"
  65. #define DCG_PERF_HDR_FILE "nprfincl.h"
  66. /****************************************************************************/
  67. /* Get the platform specific definitions */
  68. /****************************************************************************/
  69. #ifdef OS_WIN32
  70. #include <ndcgcnst.h>
  71. #endif
  72. #endif /* _H_WDCGCNST */