mirror of
https://github.com/nitraiolo/CfgUSBLoader.git
synced 2024-12-02 16:14:15 +01:00
14 lines
304 B
C
14 lines
304 B
C
|
#ifndef _SDIO_H_
|
||
|
#define _SDIO_H_
|
||
|
|
||
|
#include "types.h"
|
||
|
|
||
|
/* Prototypes */
|
||
|
bool sdio_Startup(void);
|
||
|
bool sdio_Shutdown(void);
|
||
|
bool sdio_ReadSectors(sec_t sector, sec_t numSectors, void *buffer);
|
||
|
bool sdio_WriteSectors(sec_t sector, sec_t numSectors, const void *buffer);
|
||
|
bool sdio_IsInserted(void);
|
||
|
|
||
|
#endif
|