标签: windows dll portable-executable dllexport
如何知道dll中的导出符号实际上是variable还是function?
dll
variable
function
一种方法是查看符号的目标地址是否位于.code部分。 另一种方法可能是检查所选部分的memory protection attributes。
.code
但所有这些方法似乎都不可靠。
最好的方法是什么?