mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-04 18:29:37 +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
|
@ -422,12 +422,12 @@ public class CreateExampleGDTArchiveScript extends GhidraScript {
|
||||||
"#http.h", // included by something else
|
"#http.h", // included by something else
|
||||||
|
|
||||||
"# IP Helper",
|
"# IP Helper",
|
||||||
"#icmpapi.h", // Something wrong with IP_ADDR
|
|
||||||
"ifdef.h",
|
"ifdef.h",
|
||||||
"inaddr.h",
|
"inaddr.h",
|
||||||
"ip2string.h",
|
"ip2string.h",
|
||||||
"ipexport.h",
|
"ipexport.h",
|
||||||
"iphlpapi.h",
|
"iphlpapi.h",
|
||||||
|
"icmpapi.h", // Must be included after iphlpapi.h
|
||||||
"iprtrmib.h",
|
"iprtrmib.h",
|
||||||
"iptypes.h",
|
"iptypes.h",
|
||||||
"netioapi.h",
|
"netioapi.h",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue