-
Notifications
You must be signed in to change notification settings - Fork 159
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #38 from nooperpudd/new_version
add 6.3.15
- Loading branch information
Showing
35 changed files
with
1,265 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
#ifndef DATA_COLLECT_H | ||
#define DATA_COLLECT_H | ||
|
||
#define DLL_EXPORT __declspec(dllexport) | ||
|
||
#if defined(IS_WINCOLLECT_LIB) && defined(WIN32) | ||
#ifdef LIB_DATA_COLLECT_API_EXPORT | ||
#define DATA_COLLECT_API_EXPORT __declspec(dllexport) | ||
#else | ||
#define DATA_COLLECT_API_EXPORT __declspec(dllimport) | ||
#endif | ||
#else | ||
#define DATA_COLLECT_API_EXPORT | ||
#endif | ||
|
||
|
||
///获取AES加密和RSA加密的终端信息 | ||
///@pSystemInfo 出参 空间需要调用者自己分配 至少270个字节 | ||
///@nLen 出参 获取到的采集信息的长度 | ||
///采集信息内可能含有‘\0’ 建议调用者使用内存复制 | ||
DATA_COLLECT_API_EXPORT int CTP_GetSystemInfo(char *pSystemInfo, int &nLen); | ||
|
||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.