I've looked at an export table of a specific DLL and Iv'e seen some strange entries in the table so I tried to find an answer to this issue in the pecoff specification and didn't find any and I hope that someone maybe have one.
I ran a dumpbin on a certain DLL (Qt5Core.dll) and found that the exports table have entries that are not functions - > there are entries that their addresses point to the .data section and the .rdata sections... for example:
const QAbstractState::`vftable' 67366E0C 1470 QMetaObject const QEventTransition::staticMetaObject 673C15A8 6160 QCoreApplication * QCoreApplication::self 6746180C 5504
It seems like some c++ variables and I wondered why are they in the exports table? Thanks!