mirror of
https://github.com/radareorg/radare2.git
synced 2024-11-24 22:00:18 +00:00
2a054f6bba
with .dll and .exe for w32 * Do not build libr.${LIB_AR} by default (problematic in some platforms) * Lot of more fixes for building on w32 - Yeah i got the first build done! - Check radare.org/get/radare2-w32* - So many things are still broken for windows - Fixes some recursive and missing dependencies - LINK and LDFLAGS must be after $OBJ |
||
---|---|---|
.. | ||
p | ||
t | ||
cache.c | ||
desc.c | ||
handle.c | ||
io.c | ||
Makefile | ||
map.c | ||
README | ||
section.c | ||
undo.c | ||
undo.h |
R_IO ==== IO - manages basic IO DESC - file descriptor (stores seek, io_handler, ..) HANDLE - determines io backend by io plugins SECTION - allows virtual base addressing over the IO MAP - allows virtual maps at random address // TODO: - Can share storage UNDO - records all write ops allowing undo, redo, reset operations r_io_undo_* CACHE - caches write operations to emulate fake reads r_io_cache_* ------------------------------------------- NOTES: each plugin handle must provide a 'optimal' read size.. or io must be configured to this var io = new Radare.Io(); int fd = io.open("/bin/ls"); foreach (Io.Handle handle in io.handle_list()) { stdout.printf(" %s\n", handle.name); }