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.

66 lines
1.0 KiB

  1. /*++
  2. Copyright (c) 2001 Microsoft Corporation
  3. All rights reserved
  4. Module Name:
  5. lsaargs.hxx
  6. Abstract:
  7. This file provides useful accssors and mutators.
  8. Author:
  9. Larry Zhu (LZhu) May 1, 2001 Created
  10. Environment:
  11. User Mode -Win32
  12. Revision History:
  13. --*/
  14. #ifndef LSAARGS_HXX
  15. #define LSAARGS_HXX
  16. #ifdef __cplusplus
  17. #include "lsaapi.hxx"
  18. #include "lsaspmlpcapi.hxx"
  19. class TSPM_LSA_ARGUMENTS : public TLSA_API, public TSPMLPCAPI
  20. {
  21. SIGNATURE('args');
  22. public:
  23. TSPM_LSA_ARGUMENTS(void);
  24. TSPM_LSA_ARGUMENTS(IN ULONG64 baseOffset);
  25. ~TSPM_LSA_ARGUMENTS(void);
  26. HRESULT IsValid(void) const;
  27. ULONG64 GetLsaArgsBase(void) const;
  28. protected:
  29. HRESULT Initialize(IN ULONG64 offsetBase);
  30. private:
  31. //
  32. // Copying and assignment are not defined.
  33. //
  34. NO_COPY(TSPM_LSA_ARGUMENTS);
  35. HRESULT Initialize(void);
  36. ULONG64 m_baseOffset;
  37. HRESULT m_hr;
  38. };
  39. #endif // #ifdef __cplusplus
  40. #endif // #ifndef LSAARGS_HXX