diff options
author | Jaehyun Cho <jae_hyun.cho@samsung.com> | 2019-12-20 09:44:41 +0100 |
---|---|---|
committer | Xavi Artigas <xavierartigas@yahoo.es> | 2019-12-20 09:45:42 +0100 |
commit | e16b32c37643d3243b2350df053474d84717c2a2 (patch) | |
tree | 8543baf31c8305af32878f74d7b3f596b9ae4856 /src/bindings | |
parent | e09919ba3fd3038adf7f2d4506b477b773dd9913 (diff) | |
download | efl-e16b32c37643d3243b2350df053474d84717c2a2.tar.gz |
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
Diffstat (limited to 'src/bindings')
-rw-r--r-- | src/bindings/mono/eo_mono/iwrapper.cs | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/src/bindings/mono/eo_mono/iwrapper.cs b/src/bindings/mono/eo_mono/iwrapper.cs index b4f1af9fcd..29a346dcc4 100644 --- a/src/bindings/mono/eo_mono/iwrapper.cs +++ b/src/bindings/mono/eo_mono/iwrapper.cs @@ -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(); |