diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/perk/perk.h | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/include/perk/perk.h b/include/perk/perk.h index 99bdb8f..8624838 100644 --- a/include/perk/perk.h +++ b/include/perk/perk.h @@ -139,12 +139,15 @@ struct pe_io_ctx { }; struct pe_error_info { - int syserror; - int liberror; - const char * function; - int line; - unsigned flags; - void * ctx; + const struct pe_driver_ctx * edctx; + const struct pe_unit_ctx * euctx; + const char * eunit; + int esyscode; + int elibcode; + const char * efunction; + int eline; + unsigned eflags; + void * eany; }; struct pe_common_ctx { |