📄 file.h
字号:
#ifndef __FILE_H
#define __FILE_H
typedef struct _FileContext
{
struct _Inode *Inode;
ULONG FileSize;
} TFileContext;
/*********************************
*
* INTERFACE ROUNTINES
*
**********************************/
TFileContext* FileCreateFileContext(struct _Inode *Inode);
void FileDestroyFileContext(TFileContext *Context);
BOOL FileRead(struct _Inode *Inode, ULONG Pos, ULONG Length, char *Data);
#endif /* __FILE_H */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -