How can I find the exported function name from ordinal (export by ordinal)?

岁酱吖の 提交于 2019-12-02 07:07:40

问题


I trying in export directory ,i got the exported function name(export by name) by browsing the directory with help of addressoffnnames property ....Here ,Example in comctl32.dll (api) total fn names 420 ,but no of fnnames 118(export by name) ,other 302 fns are exported by ordinal only...i also trying dumpbin it does not show anything(fn name with respect to ordinal) from ordinal...help me ,how to relate api with ordinal to retrieve exported functions name...thanks in advance.


回答1:


Get the "Dependency Walker" utility which is available in Visaul Studio package. It can list both the ordinal and export name and allows you to sort on each.



来源:https://stackoverflow.com/questions/2005348/how-can-i-find-the-exported-function-name-from-ordinal-export-by-ordinal

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!