From b889beb0fc22a588425828b1e86940ab15a01217 Mon Sep 17 00:00:00 2001 From: Stefan Schmidt Date: Thu, 27 Oct 2016 16:43:11 +0200 Subject: [PATCH] docs: ecore: document missing structs --- src/lib/ecore/ecore_exe.eo | 1 + src/lib/ecore/efl_loop.eo | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/lib/ecore/ecore_exe.eo b/src/lib/ecore/ecore_exe.eo index 6d7fab1d5d..18e6502245 100644 --- a/src/lib/ecore/ecore_exe.eo +++ b/src/lib/ecore/ecore_exe.eo @@ -13,6 +13,7 @@ struct Ecore.Exe.Event_Data.Line */ struct Ecore.Exe.Event_Data { + [[Ecore exe event data structure]] exe: Efl.Object; [[The handle to the process. FIXME: should actually be Ecore.Exe, workaround cyclic]] data: void_ptr; [[the raw binary data from the child process that was received]] size: int; [[the size of this data in bytes]] diff --git a/src/lib/ecore/efl_loop.eo b/src/lib/ecore/efl_loop.eo index 2cd3e24b48..2ea90f27ba 100644 --- a/src/lib/ecore/efl_loop.eo +++ b/src/lib/ecore/efl_loop.eo @@ -1,7 +1,8 @@ import efl_types; struct Efl.Loop.Arguments { - argv: const(array); + [[EFL loop arguments data structure]] + argv: const(array); [[Array with loop arguments]] initialization: bool; [[Set to $true when the program should initialize its internal state. This happen once per process instance.]] }