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.

56 lines
532 B

  1. /*
  2. * Pts.h
  3. *
  4. * Author: BreenH
  5. *
  6. * A dummy policy for Personal TS.
  7. */
  8. #ifndef __LC_PTS_H__
  9. #define __LC_PTS_H__
  10. /*
  11. * Includes
  12. */
  13. #include "policy.h"
  14. /*
  15. * Class Definition
  16. */
  17. class CPtsPolicy : public CPolicy
  18. {
  19. public:
  20. /*
  21. * Creation Functions
  22. */
  23. CPtsPolicy(
  24. );
  25. ~CPtsPolicy(
  26. );
  27. /*
  28. * Administrative Functions
  29. */
  30. ULONG
  31. GetFlags(
  32. );
  33. ULONG
  34. GetId(
  35. );
  36. NTSTATUS
  37. GetInformation(
  38. LPLCPOLICYINFOGENERIC lpPolicyInfo
  39. );
  40. };
  41. #endif