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
766 B

  1. //
  2. // tclnthlp.h
  3. //
  4. // Defines headers for tclient2.c helper functions.
  5. //
  6. // Copyright (C) 2001 Microsoft Corporation
  7. //
  8. // Author: a-devjen (Devin Jenson)
  9. //
  10. #ifndef INC_TCLNTHLP_H
  11. #define INC_TCLNTHLP_H
  12. #include <windows.h>
  13. #include <crtdbg.h>
  14. #include "apihandl.h"
  15. // In tclient.dll, this is the seperator for multiple strings
  16. #define CHAT_SEPARATOR L"<->"
  17. #define WAIT_STR_DELIMITER L'|'
  18. #define WAIT_STRING_TIMEOUT 0x7FFFFFFF // INT_MAX
  19. LPCSTR T2SetBuildNumber(TSAPIHANDLE *T2Handle);
  20. ULONG_PTR T2CopyStringWithoutSpaces(LPWSTR Dest, LPCWSTR Source);
  21. void T2AddTimeoutToString(LPWSTR Buffer, UINT Timeout);
  22. ULONG_PTR T2MakeMultipleString(LPWSTR Buffer, LPCWSTR *Strings);
  23. #endif // INC_TCLNTHLP_H