📄 ftpdwl0.h
字号:
#ifndef __FTP_DWL_H__
#define __FTP_DWL_H__
typedef int (*CALLBACK_FTP) ( unsigned char * p, int nbytes, int seek );
int ftp_get_response ( int ctrl, unsigned char * presponse, int size, int timeout );
int ftp_login ( int ctrl, unsigned char * pusername, unsigned char * ppassword );
int ftp_set_pasv ( int ctrl );
int ftp_get_pasv_param ( unsigned char * presponse, unsigned char * pip, int * pport );
int ftp_get_file ( int ctrl, int data, unsigned char * pfilename, int start, int size, CALLBACK_FTP fn );
int ftp_dwl ( unsigned char * pip, int port, unsigned char * pusername, unsigned char * ppassword, unsigned char * pfilename, int start, int size, CALLBACK_FTP fn );
#endif//__FTP_DWL_H__
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -