How to find the calling convention of a third party dll?

前端 未结 2 619
既然无缘
既然无缘 2020-12-15 17:47

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 dl

2条回答
  •  感情败类
    2020-12-15 17:58

    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

提交回复
热议问题