diff options
author | midipix <writeonce@midipix.org> | 2025-05-30 23:46:09 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2025-05-30 23:46:09 +0000 |
commit | 1647d61dd12e5206dd1de52d946d5a4551fc2b6e (patch) | |
tree | 04406ebfd573becf39a6ff4364e35c9c1b0cd487 | |
parent | 888b18e9c93e2446504ef0000ab580f9f3e01e37 (diff) | |
download | perk-1647d61dd12e5206dd1de52d946d5a4551fc2b6e.tar.bz2 perk-1647d61dd12e5206dd1de52d946d5a4551fc2b6e.tar.xz |
perk.h: whitespace meditation.
-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, |