mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-04 02:09:44 +02:00
Fix icmpapi.h parsing error in example GDT script
According to the Microsoft document, icmpapi.h must be included after iphlpapi.h. If you change the order of the inclusion of icmpapi.h, the C Parser will have no problem parsing icmpapi.h.
This commit is contained in:
parent
6394783ade
commit
ed423a4b88
1 changed files with 2 additions and 2 deletions
|
@ -203,7 +203,7 @@ public class CreateExampleGDTArchiveScript extends GhidraScript {
|
|||
"certif.h",
|
||||
"certmod.h",
|
||||
"certpol.h",
|
||||
"certpoleng.h ",
|
||||
"certpoleng.h",
|
||||
"certsrv.h",
|
||||
"certview.h",
|
||||
"credssp.h",
|
||||
|
@ -422,12 +422,12 @@ public class CreateExampleGDTArchiveScript extends GhidraScript {
|
|||
"#http.h", // included by something else
|
||||
|
||||
"# IP Helper",
|
||||
"#icmpapi.h", // Something wrong with IP_ADDR
|
||||
"ifdef.h",
|
||||
"inaddr.h",
|
||||
"ip2string.h",
|
||||
"ipexport.h",
|
||||
"iphlpapi.h",
|
||||
"icmpapi.h", // Must be included after iphlpapi.h
|
||||
"iprtrmib.h",
|
||||
"iptypes.h",
|
||||
"netioapi.h",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue