INativeWrapper.cs 217 B

123456789101112
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Runtime.InteropServices;
  4. using System.Linq;
  5. namespace Helper
  6. {
  7. internal interface INativeWrapper
  8. {
  9. System.IntPtr nativePtr { get; }
  10. }
  11. }