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

📄 fileio.h

📁 打魔兽战网的都知道他是什么
💻 H
字号:
/*    Copyright (C) 2000  Marco Ziech    Copyright (C) 2000  Ross Combs (rocombs@cs.nmsu.edu)    This program is free software; you can redistribute it and/or modify    it under the terms of the GNU General Public License as published by    the Free Software Foundation; either version 2 of the License, or    (at your option) any later version.    This program is distributed in the hope that it will be useful,    but WITHOUT ANY WARRANTY; without even the implied warranty of    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the    GNU General Public License for more details.    You should have received a copy of the GNU General Public License    along with this program; if not, write to the Free Software    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA*/#ifndef JUST_NEED_TYPES#ifndef INCLUDED_FILEIO_PROTOS#define INCLUDED_FILEIO_PROTOS#define JUST_NEED_TYPES#include <stdio.h>#include "compat/uint.h"#undef JUST_NEED_TYPESextern void file_rpush(FILE *f);extern void file_rpop(void);extern void file_wpush(FILE *f);extern void file_wpop(void);extern t_uint8 file_readb(void);extern t_uint16 file_readw_le(void);extern t_uint16 file_readw_be(void);extern t_uint32 file_readd_le(void);extern t_uint32 file_readd_be(void);extern int file_writeb(t_uint8 u);extern int file_writew_le(t_uint16 u);extern int file_writew_be(t_uint16 u);extern int file_writed_le(t_uint32 u);extern int file_writed_be(t_uint32 u);#endif#endif

⌨️ 快捷键说明

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