Introducing XDA:DevCon – A Conference For Developers By Developers
XDA Developers Android and Mobile Development Forum
Forgot your password?
 
Post Reply+
Tip us?
 
michar
Old
#1  
Member - OP
Thanks Meter 0
Posts: 75
Join Date: Dec 2003
Default Call Log API

Does anyone knows how to read the Call Log DB?
Is there any API to do it?
Examples, links anything....

Tnx good people
 
itsme
Old
#2  
Developer / Recognized Developer
Thanks Meter 2
Posts: 652
Join Date: Mar 2003
Location: delft 52'00N 4'22E
just use the CeDatabase calls

fields are:
Code:
#define FIELDID(id, type)  ((id)<<16 | (type))

enum DBSYSCALLLOG_FIELDS {
    //  1 exists, but use is unknown FIELDID(1, CEVT_I2)
    DBSYSCALLLOG_START_FIELD=FIELDID(2, CEVT_FILETIME),
    DBSYSCALLLOG_END_FIELD=FIELDID(3, CEVT_FILETIME),
    DBSYSCALLLOG_CALLTYPE_FIELD=FIELDID(4, CEVT_I4),
    //  5 is not used
    DBSYSCALLLOG_NUMBER_FIELD=FIELDID(6, CEVT_LPWSTR),
    DBSYSCALLLOG_NAME_FIELD=FIELDID(7, CEVT_LPWSTR),
    //  8 is not used
    //  9 exists, but use is unknown FIELDID(9, CEVT_I4)
    DBSYSCALLLOG_NUMBERTYPE_FIELD=FIELDID(10, CEVT_LPWSTR),
};

enum SysCallType {
    SYSCALL_MISSED=4,
    SYSCALL_OUTGOING=5,
    SYSCALL_INCOMING=6,
    SYSCALL_REJECTED=7,
};
 
JGUI
Old
#3  
JGUI's Avatar
Senior Member
Thanks Meter 1
Posts: 201
Join Date: Jun 2003
Location: Poland, Scotland
you have all SDK for Call API inside of MS PPC2003SDK or Smartphone SDK
 
Post Reply+
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Go to top of page...