ecore con: remove pointers

This commit is contained in:
Daniel Kolesa 2016-11-04 17:07:50 +01:00
parent 218403dc19
commit 6975b89e14
2 changed files with 7 additions and 7 deletions

View File

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

View File

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