Add "none" calling convention

This commit is contained in:
gingerBill
2019-02-23 14:42:44 +00:00
parent a07232ea63
commit 64bd884d94
4 changed files with 8 additions and 0 deletions

View File

@@ -2700,6 +2700,7 @@ ProcCallingConvention string_to_calling_convention(String s) {
if (s == "std") return ProcCC_StdCall;
if (s == "fastcall") return ProcCC_FastCall;
if (s == "fast") return ProcCC_FastCall;
if (s == "none") return ProcCC_None;
return ProcCC_Invalid;
}