?? pccard.h
字號:
#ifndef __PCCARD_H__
#define __PCCARD_H__
//#include "fat.h"
#include "Def.h"
class PCCARD
{
protected:
void ReadRegister(U32 nRegister, U8& data);
void WriteRegister(U32 nRegister, U8 nValue);
void GetDataFromDevice(U16& uData);
void PutDataToDevice(U16 nData);
public:
bool ChangeMode(U32 mode);
bool OpenMedia(U32 mode);
bool CloseMedia(void);
void GetAttribData(U32 index, U8& data);
virtual bool ReadBlocks(U32 uStBlock, U32 uBlocks, U32 uBufAddr);
virtual bool WriteBlocks(U32 uStBlock, U32 uBlocks, U32 uBufAddr);
};
#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -