diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/perk/perk.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/perk/perk.h b/include/perk/perk.h index f3948f0..312e145 100644 --- a/include/perk/perk.h +++ b/include/perk/perk.h @@ -263,6 +263,10 @@ perk_api int pe_output_export_symbols (const struct pe_driver_ctx *, c perk_api int pe_output_import_libraries (const struct pe_driver_ctx *, const struct pe_image_meta *); perk_api int pe_output_mdso_libraries (const struct pe_driver_ctx *, const struct pe_image_meta *); +/* error trace api */ +perk_api int pe_output_error_record (const struct pe_driver_ctx *, const struct pe_error_info *); +perk_api int pe_output_error_vector (const struct pe_driver_ctx *); + /* header dump api */ perk_api int pe_hexdump_image_dos_hdr (const struct pe_driver_ctx *, const struct pe_image_meta *); perk_api int pe_hexdump_coff_image_hdr (const struct pe_driver_ctx *, const struct pe_image_meta *); @@ -272,10 +276,6 @@ perk_api int pe_hexdump_sec_tbl (const struct pe_driver_ctx *, c perk_api int pe_hexdump_export_hdr (const struct pe_driver_ctx *, const struct pe_image_meta *); perk_api int pe_hexdump_import_tbl (const struct pe_driver_ctx *, const struct pe_image_meta *); -/* error trace api */ -perk_api int pe_output_error_record (const struct pe_driver_ctx *, const struct pe_error_info *); -perk_api int pe_output_error_vector (const struct pe_driver_ctx *); - /* raw image api */ perk_api int pe_raw_map_raw_image (const struct pe_driver_ctx *, int fd, const char * path, int prot, |