vcpe/srcs/libs/include/inet_misc.h

25 lines
804 B
C
Raw Normal View History

2022-05-10 06:43:27 +00:00
//
// Created by xajhu on 2021/7/1 0001.
//
#ifndef DAEMON_AGENT_NETWORD_INET_MISC_H
#define DAEMON_AGENT_NETWORD_INET_MISC_H
#ifdef __cplusplus
extern "C" {
#endif
int inet_api_init(void);
typedef void (*on_http_response)(void *pData, unsigned int size, const char *pReqUrl, const char *pDlPath,
const char *pTaskUuid, int iFinished, void *pUserData);
typedef void (*on_progress_changed)(const char *pReqUrl, const char *pTaskUuid, unsigned char uPercent,
void *pUserData);
const char *inet_download_file_async(const char *pURL, const char *pPath, on_http_response onRespCb,
on_progress_changed onProgressCb, void *pData);
#ifdef __cplusplus
}
#endif
#endif//DAEMON_AGENT_NETWORD_INET_MISC_H