gnokii-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

gnokii/include/gnokii call.h, 1.10, 1.11 common.h, 1.128, 1.129 data.h,


From: BORBELY Zoltan <address@hidden>
Subject: gnokii/include/gnokii call.h, 1.10, 1.11 common.h, 1.128, 1.129 data.h, 1.69, 1.70
Date: Sun, 30 Nov 2003 18:55:16 +0000

Update of /cvsroot/gnokii/gnokii/include/gnokii
In directory subversions:/tmp/cvs-serv3283/include/gnokii

Modified Files:
        call.h common.h data.h 
Log Message:
call management updates


Index: data.h
===================================================================
RCS file: /cvsroot/gnokii/gnokii/include/gnokii/data.h,v
retrieving revision 1.69
retrieving revision 1.70
diff -C2 -d -r1.69 -r1.70
*** data.h      24 Oct 2003 12:49:07 -0000      1.69
--- data.h      30 Nov 2003 18:55:14 -0000      1.70
***************
*** 100,103 ****
--- 100,104 ----
        gn_tone *tone;
        gn_ringtone_list *ringtone_list;
+       gn_call_active *call_active;
  } gn_data;
  
***************
*** 226,229 ****
--- 227,231 ----
        GN_OP_GetRingtoneList,
        GN_OP_DeleteRingtone,
+       GN_OP_GetActiveCalls,
        GN_OP_Max,      /* don't append anything after this entry */
  } gn_operation;

Index: common.h
===================================================================
RCS file: /cvsroot/gnokii/gnokii/include/gnokii/common.h,v
retrieving revision 1.128
retrieving revision 1.129
diff -C2 -d -r1.128 -r1.129
*** common.h    19 Oct 2003 21:17:54 -0000      1.128
--- common.h    30 Nov 2003 18:55:14 -0000      1.129
***************
*** 132,136 ****
     not support these lengths so they have their own limits set. */
  #define GN_PHONEBOOK_NAME_MAX_LENGTH            61   /* For 6510 */
! #define GN_PHONEBOOK_NUMBER_MAX_LENGTH          48   /* For 7110 */
  #define GN_PHONEBOOK_SUBENTRIES_MAX_NUMBER      10   /* For 6510 */
                                                     /* 7110 is able to have in 
one
--- 132,136 ----
     not support these lengths so they have their own limits set. */
  #define GN_PHONEBOOK_NAME_MAX_LENGTH            61   /* For 6510 */
! #define GN_PHONEBOOK_NUMBER_MAX_LENGTH          49   /* For 6510 */
  #define GN_PHONEBOOK_SUBENTRIES_MAX_NUMBER      10   /* For 6510 */
                                                     /* 7110 is able to have in 
one

Index: call.h
===================================================================
RCS file: /cvsroot/gnokii/gnokii/include/gnokii/call.h,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** call.h      28 Apr 2003 12:48:46 -0000      1.10
--- call.h      30 Nov 2003 18:55:14 -0000      1.11
***************
*** 66,69 ****
--- 66,78 ----
  } gn_call_info;
  
+ typedef struct {
+       int call_id;
+       int channel;
+       char number[GN_PHONEBOOK_NUMBER_MAX_LENGTH + 1];
+       char name[GN_PHONEBOOK_NAME_MAX_LENGTH + 1];
+       gn_call_status state;
+       gn_call_status prev_state;
+ } gn_call_active;
+ 
  /* Call functions and structs */
  typedef struct {





reply via email to

[Prev in Thread] Current Thread [Next in Thread]