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.

41 lines
1.6 KiB

  1. /*++
  2. Copyright (c) 1997 Microsoft Corporation
  3. Module Name:
  4. reg.h
  5. Abstract:
  6. This module contains the registry definitions
  7. --*/
  8. #ifndef _REG_H
  9. #define _REG_H
  10. // FAX_PROVIDERS_REGKEY is the providers registry key under the fax registry key
  11. #define FAX_PROVIDERS_REGKEY L"Software\\Microsoft\\Fax\\Device Providers"
  12. // NEWFSP_PROVIDER is the newfsp registry key under the providers registry key
  13. #define NEWFSP_PROVIDER L"NewFsp: Sample Windows NT Fax Service Provider"
  14. // NEWFSP_PROVIDER_FRIENDLYNAME is the friendly name of the newfsp service provider
  15. #define NEWFSP_PROVIDER_FRIENDLYNAME L"NewFsp: Sample Windows NT Fax Service Provider"
  16. // NEWFSP_PROVIDER_IMAGENAME is the image name of the newfsp service provider
  17. #define NEWFSP_PROVIDER_IMAGENAME L"%SystemRoot%\\system32\\newfsp.dll"
  18. // NEWFSP_PROVIDER_PROVIDERNAME is the provider name of the newfsp service provider
  19. #define NEWFSP_PROVIDER_PROVIDERNAME L"NewFsp: Sample Windows NT Fax Service Provider"
  20. // NEWFSP_LOGGING_ENABLED is the registry value indicating if logging is enabled
  21. #define NEWFSP_LOGGING_ENABLED L"LoggingEnabled"
  22. // NEWFSP_LOGGING_DIRECTORY is the registry value indicating the logging directory
  23. #define NEWFSP_LOGGING_DIRECTORY L"LoggingDirectory"
  24. // NEWFSP_DEVICES is the virtual fax devices registry key under the newfsp registry key
  25. #define NEWFSP_DEVICES L"Devices"
  26. // NEWFSP_DEVICE_DIRECTORY is the registry value indicating the incoming fax directory for the virtual fax device
  27. #define NEWFSP_DEVICE_DIRECTORY L"IncomingFaxDirectory"
  28. #endif