1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| #ifndef __HCNET_H__
| #define __HCNET_H__
| #include "usg_common.h"
|
| #ifdef __cplusplus
| extern "C" {
| #endif
|
| void hcnetdisk_init_wrapper(char * libPaht);
| long hcnetdisk_login_wrapper(char *host , int port, char *username, char *password);
| void hcnetdisk_logout_wrapper(long userid);
| int hcnetdisk_downloadByTime_wrapper(long userid, int channel, struct tm *start, struct tm *end, char *destfile);
|
|
| #ifdef __cplusplus
| }
| #endif
| #endif
|
|