Skip to content
This repository has been archived by the owner on Jul 19, 2022. It is now read-only.

Commit

Permalink
ril: define Samsung CallDetails stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
ngoquang2708 committed Jul 8, 2018
1 parent 4e2cc6c commit 8eb6cba
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion include/telephony/ril.h
Original file line number Diff line number Diff line change
Expand Up @@ -606,6 +606,15 @@ typedef struct {
(as expected by TS 27.005) or NULL for default SMSC */
} RIL_SMS_WriteArgs;

/** Samsung stuff. sizeof(CallDetails) = 20 */
typedef struct {
int call_type;
int call_domain;
char* getCsvFromExtras;
int padding1;
int padding2;
} RIL_CallDetails;

/** Used by RIL_REQUEST_DIAL */
typedef struct {
char * address;
Expand All @@ -616,6 +625,8 @@ typedef struct {
* clir == 2 on "CLIR suppression" (allow CLI presentation)
*/
RIL_UUS_Info * uusInfo; /* NULL or Pointer to User-User Signaling Information */

RIL_CallDetails *callDetails;
} RIL_Dial;

typedef struct {
Expand Down Expand Up @@ -6603,4 +6614,4 @@ void RIL_requestTimedCallback (RIL_TimedCallback callback,
}
#endif

#endif /*ANDROID_RIL_H*/
#endif /*ANDROID_RIL_H*/

0 comments on commit 8eb6cba

Please sign in to comment.