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.

60 lines
827 B

  1. /*++
  2. Copyright (c) 1999-2000 Microsoft Corporation
  3. Module Name:
  4. helpasst.h
  5. Abstract:
  6. Prototype for Help Assistant account related function
  7. Author:
  8. HueiWang 4/26/2000
  9. --*/
  10. #ifndef __HELPASST_H__
  11. #define __HELPASST_H__
  12. #include "tsremdsk.h"
  13. #ifdef __cplusplus
  14. extern "C"{
  15. #endif
  16. BOOL
  17. TSIsSessionHelpSession(
  18. PWINSTATION pWinStation,
  19. BOOL* pValid
  20. );
  21. NTSTATUS
  22. TSHelpAssistantQueryLogonCredentials(
  23. ExtendedClientCredentials* pCredential
  24. );
  25. BOOL
  26. TSVerifyHelpSessionAndLogSalemEvent(
  27. PWINSTATION pWinStation
  28. );
  29. VOID
  30. TSStartupSalem();
  31. VOID
  32. TSLogSalemReverseConnection(
  33. PWINSTATION pWinStation,
  34. PICA_STACK_ADDRESS pStackAddress
  35. );
  36. HRESULT
  37. TSRemoteAssistancePrepareSystemRestore();
  38. #ifdef __cplusplus
  39. }
  40. #endif
  41. #endif