From: Jaehyun Cho Date: Fri, 3 May 2019 07:42:42 +0000 (+0900) Subject: efl_mono: fix to load libevas.so based on efl.Libs.Evas X-Git-Tag: accepted/tizen/unified/20190509.041000~35 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6242118b44106cde82d1d3fb333696585e5bc380;p=platform%2Fupstream%2Fefl.git 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. --- diff --git a/src/bindings/mono/efl_mono/efl_all.cs b/src/bindings/mono/efl_mono/efl_all.cs index 77f08be..7e7e9a0 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()