Imports.cs 247 B

12345678910
  1. using System.Runtime.CompilerServices;
  2. using System.Runtime.InteropServices;
  3. namespace CGlueTestLib;
  4. internal static class Imports
  5. {
  6. [MethodImpl(MethodImplOptions.InternalCall)]
  7. internal static extern string string_return_method();
  8. }