📄 blockdevice.h
字号:
//window虚拟驱动的文件
#ifndef BLOCK_DEVICE_HEAD
#define BLOCK_DEVICE_HEAD
#include "cyg_type.h"
int ReadBlock(void *buf, cyg_uint32 *len, cyg_uint32 bnum, cyg_uint32 pos);
int WriteBlock(void *buf,cyg_uint32 *len, cyg_uint32 bnum, cyg_uint32 pos);
int FormatDisk(void);
int InitialDevice(void);
void EndDevice(void);
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -