INativeLoader.cs 348 B

1234567891011121314
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace NativeLibraryLoader
  5. {
  6. internal interface INativeLoader
  7. {
  8. IntPtr CoreLoadLibrary(string path);
  9. IntPtr CoreGetProcAddress(IntPtr intPtr, string entryPoint);
  10. void CoreFreeLibrary(IntPtr intPtr);
  11. string CoreGetLastError();
  12. }
  13. }