msvcrt: symbol undecoration: Added support for a couple of more calling conventions.

oldstable
Eric Pouech 2008-01-21 22:05:46 +01:00 committed by Alexandre Julliard
parent 056e589556
commit d7c0e274e8
1 changed files with 4 additions and 2 deletions

View File

@ -624,7 +624,8 @@ static BOOL get_calling_convention(char ch, const char** call_conv,
case 'E': case 'F': *call_conv = "thiscall"; break;
case 'G': case 'H': *call_conv = "stdcall"; break;
case 'I': case 'J': *call_conv = "fastcall"; break;
case 'K': break;
case 'K': case 'L': break;
case 'M': *call_conv = "clrcall"; break;
default: ERR("Unknown calling convention %c\n", ch); return FALSE;
}
}
@ -638,7 +639,8 @@ static BOOL get_calling_convention(char ch, const char** call_conv,
case 'E': case 'F': *call_conv = "__thiscall"; break;
case 'G': case 'H': *call_conv = "__stdcall"; break;
case 'I': case 'J': *call_conv = "__fastcall"; break;
case 'K': break;
case 'K': case 'L': break;
case 'M': *call_conv = "__clrcall"; break;
default: ERR("Unknown calling convention %c\n", ch); return FALSE;
}
}