summaryrefslogtreecommitdiffhomepage
path: root/src/internal
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2015-12-04 22:56:15 -0500
committermidipix <writeonce@midipix.org>2016-11-10 23:35:30 -0500
commitd7ed3e2faf8e3bc1aeb1e7fed27cd8a1ff4b2290 (patch)
tree0fa55ad7eccd35b3f7cbb3194045d5bcc9f83032 /src/internal
parentc61328dfece5c7346aabd4bc0027a9eb8126dd08 (diff)
downloadperk-d7ed3e2faf8e3bc1aeb1e7fed27cd8a1ff4b2290.tar.bz2
perk-d7ed3e2faf8e3bc1aeb1e7fed27cd8a1ff4b2290.tar.xz
API redesign 5/10: pe_unit_ctx: protect members against direct modification.
Diffstat (limited to 'src/internal')
-rw-r--r--src/internal/perk_impl.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/internal/perk_impl.h b/src/internal/perk_impl.h
index dd8ff4d..77a64ae 100644
--- a/src/internal/perk_impl.h
+++ b/src/internal/perk_impl.h
@@ -13,4 +13,12 @@ struct pe_driver_ctx_impl {
struct pe_driver_ctx ctx;
};
+struct pe_unit_ctx_impl {
+ const char * path;
+ struct pe_raw_image map;
+ struct pe_image_meta * meta;
+ struct pe_common_ctx cctx;
+ struct pe_unit_ctx uctx;
+};
+
#endif