mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-17 10:19:05 +00:00
9 lines
275 B
C
9 lines
275 B
C
#ifndef _IO_PRIVATE_H_
|
|
#define _IO_PRIVATE_H_
|
|
|
|
RIOMap *io_map_new(RIO *io, int fd, int perm, ut64 delta, ut64 addr, ut64 size);
|
|
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);
|
|
|
|
#endif
|