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

54 lines
2.5 KiB
C#

/*
* Copyright 2019 by its authors. See AUTHORS.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#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);
}
}