From 0f9f9744d71f902054aa844bd2f136d8307a13dc Mon Sep 17 00:00:00 2001 From: midipix Date: Wed, 27 Jun 2018 20:12:56 -0400 Subject: internals: added slbt_map_file(), slbt_unmap_file(). --- src/internal/slibtool_mapfile_impl.h | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/internal/slibtool_mapfile_impl.h (limited to 'src/internal/slibtool_mapfile_impl.h') diff --git a/src/internal/slibtool_mapfile_impl.h b/src/internal/slibtool_mapfile_impl.h new file mode 100644 index 0000000..567fc8f --- /dev/null +++ b/src/internal/slibtool_mapfile_impl.h @@ -0,0 +1,18 @@ +#ifndef SLIBTOOL_MAPFILE_IMPL_H +#define SLIBTOOL_MAPFILE_IMPL_H + +#define SLBT_MAP_INPUT 0x0001 +#define SLBT_MAP_OUTPUT 0x0002 + +struct slbt_map_info { + void * addr; + size_t size; +}; + +struct slbt_map_info * slbt_map_file( + int, const char *, + uint32_t); + +void slbt_unmap_file(struct slbt_map_info *); + +#endif -- cgit v1.2.3