⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 my_file.h

📁 iptux是linux下面能实现类似windows里面飞鸽传书的功能
💻 H
字号:
//// C++ Interface: my_file//// Description:////// Author: Jally <jallyx@163.com>, (C) 2008//// Copyright: See COPYING file that comes with this distribution////#ifndef MY_FILE_H#define MY_FILE_H#include "udt.h"class my_file { public:	my_file(bool fg);	//r false,w true	~my_file();	void chdir(const char *dir);	int open(const char *filename, int flags, ...);	int stat(const char *filename, struct stat64 *st);	DIR *opendir(); private:	char path[MAX_PATHBUF];	bool flag;};#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -