diff options
author | midipix <writeonce@midipix.org> | 2015-12-06 08:39:15 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-11-10 23:35:31 -0500 |
commit | 1d9a6e49523684f26fdfaa7192914000496552dc (patch) | |
tree | caf10ece35a943305bd962f1772c19a80f586cf2 /src/internal | |
parent | 76aabf2c240c67ede7734f544be94f64da2c55c5 (diff) | |
download | perk-1d9a6e49523684f26fdfaa7192914000496552dc.tar.bz2 perk-1d9a6e49523684f26fdfaa7192914000496552dc.tar.xz |
API redesign 7/10: place secondary context structures in struct pe_driver_ctx_impl.
Diffstat (limited to 'src/internal')
-rw-r--r-- | src/internal/perk_impl.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/internal/perk_impl.h b/src/internal/perk_impl.h index 7cfc590..8d8ecc3 100644 --- a/src/internal/perk_impl.h +++ b/src/internal/perk_impl.h @@ -9,6 +9,10 @@ #include <perk/perk_meta.h> struct pe_driver_ctx_impl { + struct pe_symbol_ctx symctx; + struct pe_output_ctx outctx; + struct pe_linker_ctx lnkctx; + struct pe_server_ctx srvctx; struct pe_io_ctx ioctx; struct pe_common_ctx cctx; struct pe_driver_ctx ctx; |