diff --git a/src/lib/ecore_con/ecore_con_eet_base.eo b/src/lib/ecore_con/ecore_con_eet_base.eo index 1c781c5905..82d41a2f45 100644 --- a/src/lib/ecore_con/ecore_con_eet_base.eo +++ b/src/lib/ecore_con/ecore_con_eet_base.eo @@ -64,15 +64,15 @@ class Ecore.Con.Eet.Base (Efl.Object) { legacy: ecore_con_eet; params { name: string; [[The name of the eet stream.]] - edd: Eet.Data.Descriptor *; [[The Eet.Data.Descriptor that - is to be registered.]] + edd: ptr(Eet.Data.Descriptor); [[The Eet.Data.Descriptor that + is to be registered.]] } } send { [[Function to send data.]] params { - reply: Ecore.Con.Reply *; [[Contains the ecore_con_eet object - to which the data has to be sent.]] + reply: ptr(Ecore.Con.Reply); [[Contains the ecore_con_eet object + to which the data has to be sent.]] name: string; [[The name of the eet stream.]] value: void_ptr; [[Actual data]] } @@ -80,8 +80,8 @@ class Ecore.Con.Eet.Base (Efl.Object) { raw_send { [[Function to send raw data.]] params { - reply: Ecore.Con.Reply *; [[Contains the ecore_con_eet object - to which the data has to be sent.]] + reply: ptr(Ecore.Con.Reply); [[Contains the ecore_con_eet object + to which the data has to be sent.]] protocol_name: string; [[The name of the eet stream.]] section: string; [[Name of section in the eet descriptor.]] value: void_ptr; [[The value of the section.]] diff --git a/src/lib/ecore_con/efl_net_dialer_websocket.eo b/src/lib/ecore_con/efl_net_dialer_websocket.eo index 7dafbd9d64..8408eb2aff 100644 --- a/src/lib/ecore_con/efl_net_dialer_websocket.eo +++ b/src/lib/ecore_con/efl_net_dialer_websocket.eo @@ -307,7 +307,7 @@ class Efl.Net.Dialer.Websocket (Efl.Loop_User, Efl.Net.Dialer) { events { message,text: string; [[Received a text string message (opcode=0x1)]] - message,binary: const(Eina.Slice)*; [[Received a binary message (opcode=0x2)]] + message,binary: ptr(const(Eina.Slice)); [[Received a binary message (opcode=0x2)]] pong: string; [[Received a pong (opcode=0xA) with optional message/reason]] closed,reason: Efl.Net.Dialer.Websocket.Closed_Reason; [[Received a request to close the connection. It may be a reply/confirmation from a local request, see @.close_request, or some server-generated reason. After this point, no more messages are allowed to be sent and no more will be received. @Efl.Io.Closer.close will be called.]] }