efl/src/bindings/mono/efl_mono/efl_libs.cs.in

39 lines
1.9 KiB
C#

#pragma warning disable 1591
namespace efl {
/// <summary>
/// Define the name of the libraries to be passed to DllImport statements.
/// </summary>
public static class Libs {
public const string Efl = "@EFL_DL_MONO@";
public const string Ecore = "@ECORE_DL_MONO@";
public const string Eina = "@EINA_DL_MONO@";
public const string Eo = "@EO_DL_MONO@";
public const string Evas = "@EVAS_DL_MONO@";
public const string Evil = "@EVIL_DL_MONO@";
public const string Edje = "@EDJE_DL_MONO@";
public const string Elementary = "@ELEMENTARY_DL_MONO@";
public const string Eldbus = "@ELDBUS_DL_MONO@";
public const string CustomExports = "@CUSTOM_EXPORTS_MONO_DL_MONO@";
public const string Libdl = "libdl.so";
public const string Kernel32 = "kernel32.dll";
public static readonly Efl.Eo.NativeModule EflModule = new Efl.Eo.NativeModule(Efl);
public static readonly Efl.Eo.NativeModule CoreModule = new Efl.Eo.NativeModule(Ecore);
public static readonly Efl.Eo.NativeModule EinaModule = new Efl.Eo.NativeModule(Eina);
public static readonly Efl.Eo.NativeModule EoModule = new Efl.Eo.NativeModule(Eo);
public static readonly Efl.Eo.NativeModule EvasModule = new Efl.Eo.NativeModule(Evas);
public static readonly Efl.Eo.NativeModule EvilModule = new Efl.Eo.NativeModule(Evil);
public static readonly Efl.Eo.NativeModule EdjeModule = new Efl.Eo.NativeModule(Edje);
public static readonly Efl.Eo.NativeModule ElementaryModule = new Efl.Eo.NativeModule(Elementary);
public static readonly Efl.Eo.NativeModule EldbusModule = new Efl.Eo.NativeModule(Eldbus);
public static readonly Efl.Eo.NativeModule CustomExportsModule = new Efl.Eo.NativeModule(CustomExports);
public static readonly Efl.Eo.NativeModule LibdlModule = new Efl.Eo.NativeModule(Libdl);
public static readonly Efl.Eo.NativeModule Kernel32Module = new Efl.Eo.NativeModule(Kernel32);
}
}