mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-05-31 11:55:37 +08: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:
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user