diff options
author | midipix <writeonce@midipix.org> | 2025-05-31 21:34:17 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2025-05-31 22:11:05 +0000 |
commit | d9d2d9175f0e52d873e5bf9210a1f35fd3a49b7c (patch) | |
tree | 94f05e51309973c64f5428ceebfd817c69f51447 /src/internal | |
parent | 1c0129c0e4039a3b337cc54a2b9cbace7e6a0849 (diff) | |
download | perk-d9d2d9175f0e52d873e5bf9210a1f35fd3a49b7c.tar.bz2 perk-d9d2d9175f0e52d873e5bf9210a1f35fd3a49b7c.tar.xz |
driver: pe_lib_get_unit_ctx(): added handling of archives and archive members.
Diffstat (limited to 'src/internal')
-rw-r--r-- | src/internal/perk_driver_impl.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/internal/perk_driver_impl.h b/src/internal/perk_driver_impl.h index e50d08a..0f992d1 100644 --- a/src/internal/perk_driver_impl.h +++ b/src/internal/perk_driver_impl.h @@ -48,6 +48,9 @@ struct pe_unit_ctx_impl { const char * path; struct pe_raw_image map; struct pe_image_meta * meta; + struct pe_raw_archive armap; + struct pe_archive_meta *armeta; + struct pe_image_meta ** objmeta; struct pe_unit_ctx uctx; }; |