system
1
nobody wrote on Sunday, April 03, 2005:
I get alot of errors when i try to define a function within a class with GLFWCALL:
class myclass
{
void GLFWCALL doSomething(void* arg);
}
I get these errors even when it is a static function. Any help will be much appreciated.
system
2
nobody wrote on Monday, April 04, 2005:
Be more precise about "alot of errors" please
I’ve a class (singleton) named CMouseInput with GLFWCALL functions and work fine
I built the class to intercept and translate mouse events
ShenronFR