From 588dc4d0af05b405b1bf83dcc06ff051da08a6fc Mon Sep 17 00:00:00 2001 From: Jaehyun Cho Date: Fri, 3 May 2019 16:42:42 +0900 Subject: [PATCH] efl_mono: fix to load libevas.so based on efl.Libs.Evas libevas.so is loaded based on efl.Libs.Evas in efl_libs.cs. Therefore, the hard coded string "evas" is replaced with efl.Libs.Evas. --- src/bindings/mono/efl_mono/efl_all.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bindings/mono/efl_mono/efl_all.cs b/src/bindings/mono/efl_mono/efl_all.cs index 9a49730093..873bd67e48 100644 --- a/src/bindings/mono/efl_mono/efl_all.cs +++ b/src/bindings/mono/efl_mono/efl_all.cs @@ -30,7 +30,7 @@ static class UnsafeNativeMethods static UnsafeNativeMethods() { - _evas_init = new Efl.Eo.FunctionWrapper("evas", "evas_init"); + _evas_init = new Efl.Eo.FunctionWrapper(efl.Libs.Evas, "evas_init"); } public static void evas_init()