blob: 08a83c425f8fd70d23609d02470fc4b49b9c681f (
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
|
/*
* Jitsi, the OpenSource Java VoIP and Instant Messaging client.
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
#ifndef _NET_JAVA_SIP_COMMUNICATOR_PLUGIN_ADDRBOOK_MSOUTLOOK_MSOUTLOOKADDRBOOKCONTACTQUERY_H_
#define _NET_JAVA_SIP_COMMUNICATOR_PLUGIN_ADDRBOOK_MSOUTLOOK_MSOUTLOOKADDRBOOKCONTACTQUERY_H_
int MsOutlookAddrBookContactQuery_IMAPIProp_1DeleteProp
(long propId, const char * nativeEntryId);
long MsOutlookAddrBookContactQuery_IMAPIProp_1GetProps(
const char* nativeEntryId,
int propIdCount,
long * propIds,
long flags,
void ** props,
unsigned long* propsLength,
char * propsType);
int MsOutlookAddrBookContactQuery_IMAPIProp_1SetPropString
(long propId, const char* nativeValue, const char* nativeEntryId);
char* MsOutlookAddrBookContactQuery_createContact(void);
int MsOutlookAddrBookContactQuery_deleteContact(const char * nativeEntryId);
void MsOutlookAddrBookContactQuery_foreachMailUser
(const char * query, void * callback, void * callbackObject);
#endif
|