From e8658dad5956e2d67ee28c2264c1653951bc1cd9 Mon Sep 17 00:00:00 2001 From: Bruno da Silva Belo Date: Wed, 16 Oct 2019 11:00:29 -0300 Subject: [PATCH] csharp: updating eldbus_config docs. Summary: ref T8361 Reviewers: lauromoura, felipealmeida, segfaultxavi, woohyun Reviewed By: lauromoura Subscribers: cedric, #reviewers, #committers Tags: #efl Maniphest Tasks: T8361 Differential Revision: https://phab.enlightenment.org/D10417 --- src/bindings/mono/eldbus_mono/eldbus_config.cs | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/src/bindings/mono/eldbus_mono/eldbus_config.cs b/src/bindings/mono/eldbus_mono/eldbus_config.cs index b0a0c1fd13..f42452e2fb 100644 --- a/src/bindings/mono/eldbus_mono/eldbus_config.cs +++ b/src/bindings/mono/eldbus_mono/eldbus_config.cs @@ -7,14 +7,17 @@ namespace eldbus { /// Initializes Eldbus. -/// -/// Since EFL 1.23. +/// Since EFL 1.23. /// public static class Config { [DllImport(efl.Libs.Eldbus)] private static extern int eldbus_init(); [DllImport(efl.Libs.Eldbus)] private static extern int eldbus_shutdown(); + /// + /// Initialization of the eldbus. + /// Since EFL 1.23. + /// public static void Init() { if (eldbus_init() == 0) @@ -23,6 +26,10 @@ public static class Config } } + /// + /// Shutdown the eldbus. + /// Since EFL 1.23. + /// public static void Shutdown() { eldbus_shutdown();