diff options
author | PaulK <contact@paulk.fr> | 2012-06-06 21:08:18 +0200 |
---|---|---|
committer | PaulK <contact@paulk.fr> | 2012-06-06 21:08:18 +0200 |
commit | 3efc903a65428be0be4b5611e9d953a1476aa051 (patch) | |
tree | 891fb27fc508bc99efefc352f0afa77518e2235f /include | |
parent | 74664ce8d19f747e89a38d1c5fe439c6afb155f6 (diff) | |
download | external_libsamsung-ipc-3efc903a65428be0be4b5611e9d953a1476aa051.zip external_libsamsung-ipc-3efc903a65428be0be4b5611e9d953a1476aa051.tar.gz external_libsamsung-ipc-3efc903a65428be0be4b5611e9d953a1476aa051.tar.bz2 |
Introducing device-specific GPRS activation/deactivation functions mechanism
Signed-off-by: PaulK <contact@paulk.fr>
Diffstat (limited to 'include')
-rw-r--r-- | include/radio.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/radio.h b/include/radio.h index 3cd8834..12b7aa0 100644 --- a/include/radio.h +++ b/include/radio.h @@ -79,6 +79,9 @@ int ipc_client_open(struct ipc_client *client); int ipc_client_close(struct ipc_client *client); int ipc_client_power_on(struct ipc_client *client); int ipc_client_power_off(struct ipc_client *client); +int ipc_client_gprs_activate(struct ipc_client *client); +int ipc_client_gprs_deactivate(struct ipc_client *client); +int ipc_client_gprs_get_iface(struct ipc_client *client, char **iface); int ipc_client_recv(struct ipc_client *client, struct ipc_message_info *response); |