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.

34 lines
1010 B

  1. /****************************************************************************/
  2. // tssd.h
  3. //
  4. // Terminal Server Session Directory Interface main header.
  5. //
  6. // Copyright (C) 2000 Microsoft Corporation
  7. /****************************************************************************/
  8. #ifndef __TSSD_H
  9. #define __TSSD_H
  10. #include "itssd.h"
  11. // Max number of disconnected sessions allowed from a disc session query.
  12. #define TSSD_MaxDisconnectedSessions 10
  13. // Return value from UI code to signal that TermSrv needs to update
  14. // its info from the registry.
  15. // TS protocol types.
  16. #define TSProtocol_ICA 1
  17. #define TSProtocol_RDP 2
  18. // {0241e043-1cb6-4716-aa50-6a492049c3f3}
  19. DEFINE_GUID(IID_ITSSessionDirectory,
  20. 0x0241e043, 0x1cb6, 0x4716, 0xaa, 0x50, 0x6a, 0x49, 0x20, 0x49, 0xc3, 0xf3);
  21. // {012b47b7-2f06-4154-ad0c-c64bcdf0d512}
  22. DEFINE_GUID(IID_ITSSessionDirectoryEx,
  23. 0x012b47b7, 0x2f06, 0x4154, 0xad, 0x0c, 0xc6, 0x4b, 0xcd, 0xf0, 0xd5, 0x12);
  24. #endif // __TSSD_H