mirror of
https://github.com/LNH-team/pico-launcher.git
synced 2025-12-05 13:16:06 +01:00
15 lines
229 B
C
15 lines
229 B
C
#pragma once
|
|
|
|
bool dldi_init();
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void dldi_readSectors(void* buffer, u32 sector, u32 count);
|
|
void dldi_writeSectors(const void* buffer, u32 sector, u32 count);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|