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.

68 lines
1.0 KiB

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