Could any one explain me how to get to know the calling convention of a dll without getting and processing method names? Lets say our application is loading a third party dll and in order to handle it, is there any effective ways to get to know the calling convention of a dll? (__stdcall, __cdecl, __fastcall)
Share
If the symbol begins with a
_but has no@, then it’s__cdecl. If it begins with_and has a@it’s__stdcall. If it begins with@and has another@, it’s__fastcall.source