summaryrefslogtreecommitdiff
path: root/src/bindings/mono/efl_mono/efl_libs.cs.in
blob: 31e0455af9129037a16ff27abdad85e822b3856e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#pragma warning disable 1591

namespace efl {

/// <summary>
/// Define the name of the libraries to be passed to DllImport statements.
/// </summary>
internal class Libs {
    internal const string Efl = "@EFL_DL_MONO@";
    internal const string Ecore = "@ECORE_DL_MONO@";
    internal const string Eina = "@EINA_DL_MONO@";
    internal const string Eo = "@EO_DL_MONO@";
    internal const string Evas = "@EVAS_DL_MONO@";
    internal const string Evil = "@EVIL_DL_MONO@";
    internal const string Edje = "@EDJE_DL_MONO@";
    internal const string Elementary = "@ELEMENTARY_DL_MONO@";
    internal const string Eldbus = "@ELDBUS_DL_MONO@";

    internal const string CustomExports = "@CUSTOM_EXPORTS_MONO_DL_MONO@";

    internal const string Libdl = "libdl.so";
    internal const string Kernel32 = "kernel32.dll";

    internal static readonly Efl.Eo.NativeModule EflModule = new Efl.Eo.NativeModule(Efl);
    internal static readonly Efl.Eo.NativeModule CoreModule = new Efl.Eo.NativeModule(Ecore);
    internal static readonly Efl.Eo.NativeModule EinaModule = new Efl.Eo.NativeModule(Eina);
    internal static readonly Efl.Eo.NativeModule EoModule = new Efl.Eo.NativeModule(Eo);
    internal static readonly Efl.Eo.NativeModule EvasModule = new Efl.Eo.NativeModule(Evas);
    internal static readonly Efl.Eo.NativeModule EvilModule = new Efl.Eo.NativeModule(Evil);
    internal static readonly Efl.Eo.NativeModule EdjeModule = new Efl.Eo.NativeModule(Edje);
    internal static readonly Efl.Eo.NativeModule ElementaryModule = new Efl.Eo.NativeModule(Elementary);
    internal static readonly Efl.Eo.NativeModule EldbusModule = new Efl.Eo.NativeModule(Eldbus);
    internal static readonly Efl.Eo.NativeModule CustomExportsModule = new Efl.Eo.NativeModule(CustomExports);
    internal static readonly Efl.Eo.NativeModule LibdlModule = new Efl.Eo.NativeModule(Libdl);
    internal static readonly Efl.Eo.NativeModule Kernel32Module = new Efl.Eo.NativeModule(Kernel32);
}

}