docs: ecore: document missing structs

This commit is contained in:
Stefan Schmidt 2016-10-27 16:43:11 +02:00
parent 2f2bb1fc45
commit b889beb0fc
2 changed files with 3 additions and 1 deletions

View File

@ -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]]

View File

@ -1,7 +1,8 @@
import efl_types;
struct Efl.Loop.Arguments {
argv: const(array<const(stringshare)>);
[[EFL loop arguments data structure]]
argv: const(array<const(stringshare)>); [[Array with loop arguments]]
initialization: bool; [[Set to $true when the program should initialize its internal state. This happen once per process instance.]]
}