Source code of Windows XP (NT5)
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.

30 lines
733 B

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Copyright (C) Microsoft Corporation, 1991 - 1997
  4. //
  5. // File: usninfo.hxx
  6. //
  7. // Contents: Wrapper class for usn flush info
  8. //
  9. // History: 07-May-97 SitaramR Created
  10. //
  11. //----------------------------------------------------------------------------
  12. #pragma once
  13. class CUsnFlushInfo : public USN_FLUSH_INFO
  14. {
  15. public :
  16. CUsnFlushInfo( VOLUMEID volId, USN usn )
  17. {
  18. volumeId = volId;
  19. usnHighest = usn;
  20. }
  21. VOLUMEID VolumeId() { return volumeId; }
  22. USN UsnHighest() { return usnHighest; }
  23. void SetUsnHighest( USN usn ) { usnHighest = usn; }
  24. };