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.

47 lines
1.7 KiB

  1. //Copyright (c) 1998 - 1999 Microsoft Corporation
  2. /*******************************************************************************
  3. *
  4. * tscfgext.h
  5. *
  6. * some definitions for TSCFG extension DLLs
  7. *
  8. * copyright notice: Copyright 1998, Citrix Systems Inc.
  9. *
  10. * $Author: donm $ Don Messerli
  11. *
  12. * $Log: N:\nt\private\utils\citrix\winutils\tscfg\VCS\tscfgext.h $
  13. *
  14. * Rev 1.0 18 Apr 1998 15:30:22 donm
  15. * Initial revision.
  16. *
  17. *******************************************************************************/
  18. #ifndef __TSCFGEXT_H
  19. #define __TSCFGEXT_H
  20. // capability flags
  21. const ULONG WDC_CLIENT_DRIVE_MAPPING = 0x00000001;
  22. const ULONG WDC_WIN_CLIENT_PRINTER_MAPPING = 0x00000002;
  23. const ULONG WDC_CLIENT_LPT_PORT_MAPPING = 0x00000004;
  24. const ULONG WDC_CLIENT_COM_PORT_MAPPING = 0x00000008;
  25. const ULONG WDC_CLIENT_CLIPBOARD_MAPPING = 0x00000010;
  26. const ULONG WDC_CLIENT_AUDIO_MAPPING = 0x00000020;
  27. const ULONG WDC_SHADOWING = 0x00000040;
  28. const ULONG WDC_PUBLISHED_APPLICATIONS = 0x00000080;
  29. const ULONG WDC_CLIENT_DIALOG_MASK =
  30. WDC_CLIENT_DRIVE_MAPPING |
  31. WDC_WIN_CLIENT_PRINTER_MAPPING |
  32. WDC_CLIENT_LPT_PORT_MAPPING |
  33. WDC_CLIENT_COM_PORT_MAPPING |
  34. WDC_CLIENT_CLIPBOARD_MAPPING |
  35. WDC_CLIENT_AUDIO_MAPPING;
  36. const ULONG WDC_CLIENT_CONNECT_MASK =
  37. WDC_CLIENT_DRIVE_MAPPING |
  38. WDC_WIN_CLIENT_PRINTER_MAPPING |
  39. WDC_CLIENT_LPT_PORT_MAPPING;
  40. #endif // __TSCFGEXT_H