q66 pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=8841f7e781bbe24ff38a43c3faa496331713efcf
commit 8841f7e781bbe24ff38a43c3faa496331713efcf Author: Daniel Kolesa <d.kol...@osg.samsung.com> Date: Thu Nov 3 17:03:14 2016 +0100 ecore_exe: remove pointers --- src/lib/ecore/ecore_exe.eo | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/ecore/ecore_exe.eo b/src/lib/ecore/ecore_exe.eo index 18e6502..b300b7b 100644 --- a/src/lib/ecore/ecore_exe.eo +++ b/src/lib/ecore/ecore_exe.eo @@ -3,7 +3,7 @@ struct Ecore.Exe.Event_Data.Line { [[A structure that stores information of lines data from a child process.]] - line: char *; [[The bytes of a line of buffered data]] + line: ptr(char); [[The bytes of a line of buffered data]] size: int; [[The size of the line buffer in bytes]] } @@ -17,7 +17,7 @@ struct Ecore.Exe.Event_Data 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]] - lines: Ecore.Exe.Event_Data.Line *; [[an array of line data if line buffered, the last one has it's line member set to $NULL]] + lines: ptr(Ecore.Exe.Event_Data.Line); [[an array of line data if line buffered, the last one has it's line member set to $NULL]] } enum Ecore.Exe_Flags --