3 * Common Driver/Filesystem Helper Functions
12 typedef Uint (*tDrvUtil_Callback)(Uint64 Address, Uint Count, void *Buffer, Uint Argument);
15 // --- Block IO Helpers ---
16 extern Uint64 DrvUtil_ReadBlock(Uint64 Start, Uint64 Length, void *Buffer,
17 tDrvUtil_Callback ReadBlocks, Uint64 BlockSize, Uint Argument);
19 extern Uint64 DrvUtil_WriteBlock(Uint64 Start, Uint64 Length, void *Buffer,
20 tDrvUtil_Callback ReadBlocks, tDrvUtil_Callback WriteBlocks,
21 Uint64 BlockSize, Uint Argument);