input.h.svn-base
来自「这是一段游戏修改工具的源代码.ring3功能由dephi开发,驱动是C开发.希望」· SVN-BASE 代码 · 共 20 行
SVN-BASE
20 行
// A convenient thin interface to the input stream
#ifndef __INPUT_H
#define __INPUT_H
typedef int (*INTFN) ();
namespace Input {
int lineno() ;
string filename() ;
bool open(const char *fname) ;
void clear() ;
void insert_stream(istream *pos, const char *name, int start_line = 0) ;
void insert_string(char* str);
void grab_next_line(char *buff) ;
char *next_token(bool first=true) ;
void set_open_restore(INTFN module_open, INTFN module_close) ;
PEntry lookup_next_symbol() ;
}
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?