DatabaseHeaderUpdateStatus.cs 442 B

123456789101112131415
  1. namespace DiskAccessLibrary.LogicalDiskManager
  2. {
  3. // as reported by DMDiag
  4. public enum DatabaseHeaderUpdateStatus : ushort
  5. {
  6. Clean = 0x01, // consistant state
  7. Change = 0x02, // in a creation phase / during update
  8. Commit = 0x03, // replaces 'Change' header and comes immediately before 'Clean' header
  9. Abort = 0x04,
  10. New = 0x05,
  11. Stale = 0x06,
  12. Offline = 0x08,
  13. }
  14. }