IFileCheck.cs 200 B

123456789101112
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace NativeLibraryLoader
  5. {
  6. internal interface IFileCheck
  7. {
  8. MachineType CheckFile(string path);
  9. }
  10. }