www.pudn.com > Ftpwork > Basic.h


#ifndef BASIC_H
#define BASIC_H


#define FALSE  0
#define TRUE   1


#define BLOCK    0
#define RETURN   1

typedef int   BOOL;

#define CMD_ERROR		0
#define CMD_LIST   	1
#define CMD_CD			2
#define CMD_MD			3
#define CMD_GET			4
#define CMD_PUT			5
#define CMD_QUIT		6
#define CMD_HELP		7
#define CMD_LOCAL		8
#define CMD_RETURN	9

#endif