blob: 67c78e1c5f8c7e9b2de7df9abb89881c0857001b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
/*
* This file is part of libsamsung-ipc.
*
* Copyright (C) 2010-2011 Joerie de Gram <j.de.gram@gmail.com>
* Copyright (C) 2012 Paul Kocialkowski <contact@oaulk.fr>
*
* libsamsung-ipc is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
* libsamsung-ipc is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with libsamsung-ipc. If not, see <http://www.gnu.org/licenses/>.
*/
#include <samsung-ipc.h>
#ifndef __SAMSUNG_IPC_SS_H__
#define __SAMSUNG_IPC_SS_H__
/*
* Commands
*/
#define IPC_SS_WAITING 0x0C01
#define IPC_SS_CLI 0x0C02
#define IPC_SS_BARRING 0x0C03
#define IPC_SS_BARRING_PW 0x0C04
#define IPC_SS_FORWARDING 0x0C05
#define IPC_SS_INFO 0x0C06
#define IPC_SS_MANAGE_CALL 0x0C07
#define IPC_SS_USSD 0x0C08
#define IPC_SS_AOC 0x0C09
#define IPC_SS_RELEASE_COMPLETE 0x0C0A
/*
* Values
*/
#define IPC_SS_USSD_NO_ACTION_REQUIRE 0x01
#define IPC_SS_USSD_ACTION_REQUIRE 0x02
#define IPC_SS_USSD_TERMINATED_BY_NET 0x03
#define IPC_SS_USSD_OTHER_CLIENT 0x04
#define IPC_SS_USSD_NOT_SUPPORT 0x05
#define IPC_SS_USSD_TIME_OUT 0x06
/*
* Structures
*/
struct ipc_ss_ussd_header {
unsigned char state;
unsigned char dcs;
unsigned char length;
} __attribute__((__packed__));
#endif
// vim:ts=4:sw=4:expandtab
|