mirror of
https://github.com/radareorg/radare2.git
synced 2025-01-09 06:50:49 +00:00
11 lines
471 B
C
11 lines
471 B
C
#ifndef _IO_PRIVATE_H_
|
|
#define _IO_PRIVATE_H_
|
|
|
|
RIOMap *io_map_new(RIO *io, int fd, int flags, ut64 delta, ut64 addr, ut64 size, bool do_skyline);
|
|
RIOMap *io_map_add(RIO *io, int fd, int flags, ut64 delta, ut64 addr, ut64 size, bool do_skyline);
|
|
void io_map_calculate_skyline(RIO *io);
|
|
bool io_create_mem_map(RIO *io, RIOSection *sec, ut64 at, bool null, bool do_skyline);
|
|
bool io_create_file_map(RIO *io, RIOSection *sec, ut64 size, bool patch, bool do_skyline);
|
|
|
|
#endif
|