Facility.cs 211 B

123456789101112131415161718
  1. using System;
  2. namespace Standard;
  3. [Flags]
  4. internal enum Facility
  5. {
  6. Null,
  7. Rpc,
  8. Dispatch,
  9. Storage,
  10. Itf,
  11. Win32 = 7,
  12. Windows,
  13. Control = 10,
  14. Ese = 3678,
  15. WinCodec = 2200
  16. }