0

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

enter image description here

However, the Export Function List also shows that the symbol exists (I also used dumpbin to verify this) enter image description here

Any clue?

user11869
  • 1,083
  • 2
  • 14
  • 29

1 Answers1

-1

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 use glIsQuery.

Community
  • 1
  • 1
qxn
  • 17,162
  • 3
  • 49
  • 72