如何确定EXE进行的所有系统和库调用

时间:2015-07-31 19:08:00

标签: c linux windows reverse-engineering wine

我正在研究为什么Warframe在Linux上无法使用WINE,我怀疑它是由于缺少系统或库调用。我想确定它所做的调用,并将它们与WINE直接或间接支持的调用进行比较。

1 个答案:

答案 0 :(得分:1)

There is a tool called EXE Import Viewer it doesn't continuously list the function calls but it does reveal the dependencies of the the exe.

From the site:

EXE Import Viewer shows the information about linked libraries and functions, the list of function that an executable file imports, and the DLL's from which the program imports these functions.

This might be a good place to start for your problem.