-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathEntryExit.h
More file actions
44 lines (35 loc) · 893 Bytes
/
EntryExit.h
File metadata and controls
44 lines (35 loc) · 893 Bytes
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
33
34
35
36
37
38
39
40
41
42
43
44
/* vi: ts=4 sw=4 sts=4
* Program: Name
* File: EntryExit.h
* Namespace: RSServices
* Description:
* Disposition:
*
* Copyright: (c) Copyright 2010 Thomson Reuters.
*
* All users of this sample code and any associated documentation or files are
* bound by the terms and conditions in the EndNote(R) API - RSServices Development
* Kit License Agreement. This code is provided “as is” without warranty of
* any kind, either express or implied.
*
*/
#pragma once
#include "RSPlugin.h"
#if OS_MAC > 0
# define DECLSPEC
#else
# define DECLSPEC __declspec(dllexport)
#endif
// namespace
using namespace RSServices;
extern "C" {
#if OS_MAC > 0
# pragma GCC visibility push(default)
#endif
// Required functions for an RSPlugin
DECLSPEC bool Init(CServiceRequest* p);
DECLSPEC bool Exit();
#if OS_MAC > 0
# pragma GCC visibility pop
#endif
} // extern "C"