Test if OpenGL lib are present

How can I know on Macintosh if OpenGL libraries are present. They must be a gestalt fonction.
Vhoffmann@bplorraine.fr

In order for this to work, you need to “weak link” the stub libs. In CodeWarrior, click on the libs, open project inspector, and check “import weak”

if ((Ptr) kUnresolvedCFragSymbolAddress ==
(Ptr) glBegin)
{
// error, opengl not installed

}

HTH,
Darrell

This topic was automatically closed 183 days after the last reply. New replies are no longer allowed.