From e16b32c37643d3243b2350df053474d84717c2a2 Mon Sep 17 00:00:00 2001 From: Jaehyun Cho Date: Fri, 20 Dec 2019 09:44:41 +0100 Subject: [PATCH] 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 --- src/bindings/mono/eo_mono/iwrapper.cs | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) 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; } } +/// +/// Manage the initialization and cleanup for the Efl object subsystem. +/// Since EFL 1.24. +/// public static class Config { - + /// + /// Initialize the EFL object subsystem. + /// Since EFL 1.24. + /// public static void Init() { Globals.efl_object_init(); Globals.SetNativeDisposeCallbacks(); } + /// + /// Shutdown the EFL object subsystem. + /// Since EFL 1.24. + /// public static void Shutdown() { Globals.efl_object_shutdown();