After launching my app, it complains that entry point glIsQuery could not be located. So I used Dependency Walker to debug this problem.
The Parent Import Function table does show that 'glIsQuery' is missing, as shown below
However, the Export Function List also shows that the symbol exists (I also used dumpbin to verify this)
Any clue?
It looks like the name
_glIsQuery@4
was decorated (or mangled) by a C++ compiler. See this question (and particularly this answer that gives a pretty close example).You may need an
extern "C"
if you want to useglIsQuery
.