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

📄 fileio.h

📁 国外网络游戏 《The Kingdom of the Winds》 的服务端源码C+编写 有兴趣的可以
💻 H
字号:
// FileIO.h: interface for the FileIO class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_FILEIO_H__721BBE32_043B_11D5_8FAA_00C026DC0C35__INCLUDED_)
#define AFX_FILEIO_H__721BBE32_043B_11D5_8FAA_00C026DC0C35__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

class FileIO  
{
public:
	void readscript();
	void read1();
	void closescript();
	void read2();
	void read3();
	void ReadLine();
	
	int CloseFile();
	int OpenFile(char filename[],char mode[]);
	int checkok(char existfilname[]);
	unsigned char openscript(char *name);

	FileIO();
	virtual ~FileIO();

	unsigned int openings;
	
	char temp[1024];
	char script3[1024];
	char script2[1024];
	char script1[1024];
	char readed[256];
	FILE * t;
	FILE * o;
};

#endif // !defined(AFX_FILEIO_H__721BBE32_043B_11D5_8FAA_00C026DC0C35__INCLUDED_)

⌨️ 快捷键说明

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