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.]] }