FileStatusFlags.cs 193 B

123456789101112
  1. using System;
  2. namespace SMBLibrary.SMB1
  3. {
  4. [Flags]
  5. public enum FileStatusFlags : ushort
  6. {
  7. NO_EAS = 0x01,
  8. NO_SUBSTREAMS = 0x02,
  9. NO_REPARSETAG = 0x04,
  10. }
  11. }