summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--include/perk/perk.h6
-rw-r--r--src/driver/pe_driver_ctx.c1
-rw-r--r--src/internal/perk_driver_impl.h1
3 files changed, 0 insertions, 8 deletions
diff --git a/include/perk/perk.h b/include/perk/perk.h
index ade6153..92d112a 100644
--- a/include/perk/perk.h
+++ b/include/perk/perk.h
@@ -112,12 +112,6 @@ struct pe_image_meta {
struct pe_meta_sec_hdr * hidata;
};
-struct pe_output_ctx {
- const char ** attrs;
- const char * header;
- const char * footer;
-};
-
struct pe_linker_ctx {
const char ** attrs;
};
diff --git a/src/driver/pe_driver_ctx.c b/src/driver/pe_driver_ctx.c
index 2158957..6091fff 100644
--- a/src/driver/pe_driver_ctx.c
+++ b/src/driver/pe_driver_ctx.c
@@ -91,7 +91,6 @@ static struct pe_driver_ctx_impl * pe_driver_ctx_alloc(
ictx->ctx.erricap = &ictx->ctx.erriptr[--elements];
ictx->meta = meta;
- ictx->ctx.cctx.outctx = &ictx->ctx.outctx;
ictx->ctx.cctx.lnkctx = &ictx->ctx.lnkctx;
ictx->ctx.cctx.srvctx = &ictx->ctx.srvctx;
ictx->ctx.cctx.ioctx = &ictx->ctx.ioctx;
diff --git a/src/internal/perk_driver_impl.h b/src/internal/perk_driver_impl.h
index 7f34714..3435405 100644
--- a/src/internal/perk_driver_impl.h
+++ b/src/internal/perk_driver_impl.h
@@ -23,7 +23,6 @@ enum app_tags {
};
struct pe_driver_ctx_impl {
- struct pe_output_ctx outctx;
struct pe_linker_ctx lnkctx;
struct pe_server_ctx srvctx;
struct pe_io_ctx ioctx;