blob: fbd62bca63bc8d2077cfa56c5e05a9cf1fd272ff (
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
|
/*
* SIP Communicator, 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_ADDRBOOKCONTACTQUERY_H_
#define _NET_JAVA_SIP_COMMUNICATOR_PLUGIN_ADDRBOOK_ADDRBOOKCONTACTQUERY_H_
#include <jni.h>
#ifdef __cplusplus
extern "C" {
#endif /* #ifdef __cplusplus */
jmethodID AddrBookContactQuery_getPtrCallbackMethodID
(JNIEnv *jniEnv, jobject callback);
#ifdef __cplusplus
}
#endif /* #ifdef __cplusplus */
#endif /* #ifndef _NET_JAVA_SIP_COMMUNICATOR_PLUGIN_ADDRBOOK_ADDRBOOKCONTACTQUERY_H_ */
|