Fix Ghidra import call type (#1093)

Co-authored-by: jonschz <jonschz@users.noreply.github.com>
This commit is contained in:
jonschz
2024-08-31 17:00:35 +02:00
committed by GitHub
parent b898d98515
commit 0256fc4acf
2 changed files with 8 additions and 8 deletions

View File

@@ -61,7 +61,7 @@ class PdbFunctionExtractor:
_call_type_map = {
"ThisCall": "__thiscall",
"C Near": "__thiscall",
"C Near": "default",
"STD Near": "__stdcall",
}