blob: 97f8bc474e14a074bf035e316dc708b7f62367b0 (
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
|
/*
* Jitsi, the OpenSource Java VoIP and Instant Messaging client.
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
#ifndef _MSOUTLOOKDLL_H
#define _MSOUTLOOKDLL_H
#include <windows.h>
#include <jni.h>
#ifdef __cplusplus
extern "C" {
#endif
JNIEXPORT BOOL APIENTRY DllMain(
HINSTANCE hDLL,
DWORD dwReason,
LPVOID lpReserved);
#ifdef __cplusplus
}
#endif
#endif //_MSOUTLOOKDLL_H
|