📄 systemio.h
字号:
/* SystemIO.H
*
* System - I/O - Functions
*
* Copyright 1999 by PaP / The ApocalypsE
*/
#ifndef SystemIO_H
#define SystemIO_H
typedef struct
{
unsigned char *Pointer;
unsigned long Pos;
unsigned long FileSize;
} t_File_Handle;
void FileRead(t_File_Handle *Handle, void *dest, int len);
void FileSetPos(t_File_Handle *Handle, long pos);
t_File_Handle * Load_File(char *Name);
void Close_File(t_File_Handle *Handle);
void ReadFloat(t_File_Handle *F,float *Val);
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -