csharp: add documentation of class Efl.Eo.Config in iwrapper

Summary: Description and since efl version of the class Efl.Eo.Config is added.

Reviewers: YOhoho, lauromoura, segfaultxavi

Reviewed By: segfaultxavi

Subscribers: segfaultxavi, cedric, #reviewers, #committers

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D10933
This commit is contained in:
Jaehyun Cho 2019-12-20 09:44:41 +01:00 committed by Xavi Artigas
parent e09919ba3f
commit e16b32c376
1 changed files with 12 additions and 1 deletions

View File

@ -920,15 +920,26 @@ internal struct WrappingHandle
public IntPtr NativeHandle { get; private set; }
}
/// <summary>
/// Manage the initialization and cleanup for the Efl object subsystem.
/// <para>Since EFL 1.24.</para>
/// </summary>
public static class Config
{
/// <summary>
/// Initialize the EFL object subsystem.
/// <para>Since EFL 1.24.</para>
/// </summary>
public static void Init()
{
Globals.efl_object_init();
Globals.SetNativeDisposeCallbacks();
}
/// <summary>
/// Shutdown the EFL object subsystem.
/// <para>Since EFL 1.24.</para>
/// </summary>
public static void Shutdown()
{
Globals.efl_object_shutdown();