Functions that deal with IPC client objects.
More...
Functions that deal with IPC client objects.
◆ ecore_ipc_client_send()
EAPI int ecore_ipc_client_send |
( |
Ecore_Ipc_Client * |
cl, |
|
|
int |
major, |
|
|
int |
minor, |
|
|
int |
ref, |
|
|
int |
ref_to, |
|
|
int |
response, |
|
|
const void * |
data, |
|
|
int |
size |
|
) |
| |
Sends a message to the given IPC client.
- Parameters
-
cl | The given IPC client. |
major | Major opcode of the message. |
minor | Minor opcode of the message. |
ref | Reference number of the message. |
ref_to | Reference number of the message this message refers to. |
response | Requires response. |
data | The data to send as part of the message. |
size | Length of the data, in bytes, to send. |
- Returns
- The number of bytes sent.
0
will be returned if there is an error.
◆ ecore_ipc_client_server_get()
Retrieves the IPC server that the given IPC client is connected to.
- Parameters
-
- Returns
- The IPC server the IPC client is connected to.
◆ ecore_ipc_client_del()
◆ ecore_ipc_client_data_set()
Sets the IPC data associated with the given IPC client to data
.
- Parameters
-
cl | The given IPC client. |
data | The data to associate with the IPC client. |
◆ ecore_ipc_client_data_get()
Retrieves the data that has been associated with the given IPC client.
- Parameters
-
- Returns
- The data associated with the IPC client.