mirror of
https://github.com/LNH-team/pico-loader.git
synced 2026-01-10 08:29:29 +01:00
17 lines
300 B
C
17 lines
300 B
C
#pragma once
|
|
#include "loader/dldiHeader.h"
|
|
|
|
bool dldi_init();
|
|
bool dldi_patchTo(dldi_header_t* stub);
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
bool dldi_readSectors(void* buffer, u32 sector, u32 count);
|
|
bool dldi_writeSectors(const void* buffer, u32 sector, u32 count);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|