5 精币
dllinterface.h
如下:
#pragma once
#include <iostream>
using namespace std;
class _declspec(dllexport) CDllWinInterface
{
public:
// 初始化dll
BOOL Init();
// 通过token登录到server
BOOL Login(const char* token,const char* custom_code = "",std::string* out_res = NULL,int nTime = 60);
BOOL LoginW(const wchar_t* token,const wchar_t* custom_code = L"",std::wstring* out_res = NULL,int nTime = 60);
// 登出
BOOL Logout(const char* msg = "");
BOOL LogoutW(const wchar_t* msg = L"");
// 发送长连接信息
BOOL SendMsg(const char* msg);
BOOL SendMsgW(const wchar_t* msg);
// 执行短连接请求
BOOL Request(const char* msg,std::string* out_res = NULL,int nTime = 60);
BOOL RequestW(const wchar_t* msg,std::wstring* out_res = NULL,int nTime = 60);
// 注册接收数据的消息窗口
BOOL RegRecvCWnd(int nMsgType,CWnd* pWnd);
// client回传数据-用于api-SendToCustomCode
BOOL SetReturnValue(const char* task_token,const char* msg,int nTime = 60);
// 上传文件, 参数:待上传的文件路径,上传后保存的文件名称,服务器上存在同名文件返回false,是否发送消息给app,app返回的信息,进度接收窗口指针,消息类型
BOOL UpFile(const char* local_file_path,const char* server_save_name,const char* task_token = "",BOOL bExistFail = TRUE,BOOL bApp = FALSE,std::string* out_res = NULL,CWnd* pWnd = NULL,int nMsgType = 0);
BOOL UpFileW(const wchar_t* local_file_path,const wchar_t* server_save_name,const wchar_t* task_token = L"",BOOL bExistFail = TRUE,BOOL bApp = FALSE,std::wstring* out_res = NULL,CWnd* pWnd = NULL,int nMsgType = 0);
// 下载文件
// 下载文件, 参数:待下载的文件路径,下载后保存的文件路径,本地存在同名文件返回false,是否发送消息给app,app返回的信息,进度接收窗口指针,消息类型
BOOL DownFile(const char* server_file_path,const char* local_save_name,const char* task_token = "",BOOL bExistFail = TRUE,BOOL bApp = FALSE,std::string* out_res = NULL,CWnd* pWnd = NULL,int nMsgType = 0);
BOOL DownFileW(const wchar_t* server_file_path,const wchar_t* local_save_name,const wchar_t* task_token = L"",BOOL bExistFail = TRUE,BOOL bApp = FALSE,std::wstring* out_res = NULL,CWnd* pWnd = NULL,int nMsgType = 0);
// 停止上传下载任务,返回任务个数
int StopUpFile(const char* task_token);
int StopUpFileW(const wchar_t* task_token);
int StopDownFile(const char* task_token);
int StopDownFileW(const wchar_t* task_token);
// 停止任务
int StopTask(const char* task_token);
int StopTaskW(const wchar_t* task_token);
// 关闭到server的连接
void Close();
// err
std::string GetLastError();
std::wstring GetLastErrorW();
public:
CDllWinInterface(void);
~CDllWinInterface(void);
private:
void* m_dllClient;
std::string m_strErr;
};
//
///////////////////////////// C++ API /////////////////////////////////////////////
我来回答