efl/src/bindings/mono/eo_mono/FunctionWrapper_Windows.cs

22 lines
424 B
C#

using System;
using System.Runtime.InteropServices;
namespace Efl
{
namespace Eo
{
public static partial class FunctionInterop
{
[DllImport(efl.Libs.Libdl)]
public static extern IntPtr GetProcAddress(IntPtr handle, string symbol);
private static IntPtr LoadFunctionPointer(IntPtr nativeLibraryHandle, string functionName)
=> FunctionInterop.GetProcAddress(nativeLibraryHandle, functionName);
}
}
}