-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathAMWatchDll.h
More file actions
29 lines (26 loc) · 767 Bytes
/
Copy pathAMWatchDll.h
File metadata and controls
29 lines (26 loc) · 767 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
/**************************************************************************
* Copyright (C), AirM2M Tech. Co., Ltd.
*
* Name: AMWatchDll.h
* Author: panjun
* Version: V0.1
* Date: 2016/10/19
*
* Description:
*
*
* History:
* panjun 16/10/19 Initially create file.
**************************************************************************/
#ifndef __AMWATCH_DLL_H__
#define __AMWATCH_DLL_H__
#if defined(_WIN32) && !defined(WIN32_PLATFORM_CONF)
#if defined(AMWATCH_DLL)
#define AMWATCH_DLL_API extern "C" _declspec(dllexport)
#else
#define AMWATCH_DLL_API extern "C" _declspec(dllimport)
#endif
#else
#define AMWATCH_DLL_API extern "C"
#endif
#endif //__AMWATCH_DLL_H__