MachineType.cs 198 B

12345678910111213
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace NativeLibraryLoader
  5. {
  6. public enum MachineType
  7. {
  8. Bit32,
  9. Bit64,
  10. NoSupport=255,
  11. }
  12. }