enums.h
来自「用c写的ftp客户端源代码,可以在UNIX,Windows下编译通过,学习的好代」· C头文件 代码 · 共 75 行
H
75 行
/* dftp: FTP client example * Copyright (c) 1996 by Donald C. Asonye * Email: donald@uh.edu * * enums.h. * * This and other files are hereby released to the public for * educational purposes. You may redistribute this and other files * or routines as long as you are not compensated for it, and as * long as this notice is included with it. You may not use the * released source codes in anyway commercial without permission. * * It'd be nice if you share your modifications with me and everyone * else. I encourage you to make the code better as I am very busy. * * Share your knowledge :) */#ifndef __ENUMS__H#define __ENUMS__Henum { LS = 0, BINARY, ASCII, PWD, CD, OPEN, CLOSE, QUIT, LCD, LLS, LDIR, USER, SHELL, IGNORE_COMMAND, GET, PUT, HELP, RHELP, FTP_COMPLETE=1, /* these will be used later */ FTP_CONTINUE, FTP_ERROR};#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?