J2EE :omg::wtf::wtf::wtf: :->
beetung
Posts
-
Book Recommendation -
Atomic Time Webservicehow exact do u need? run ntpd on Linux. point your ntp server to a stratum1 station. :~
-
Socket listen backlog woesWhy spawn a thread *AFTER* a connection attempt? Prepare a pool of worker threads all waiting on a single semaphore would be the easiest fix I believe(least effort on your part)... after all, triggering a single semaphore event should cost a fraction of AfxBeginThread(...) try Recycle all threads instead of respawn... and dont harm any animals. :~ -Dan
-
Workspace name -
A simple function pointer question...Dave Kerr wrote: declared as this:- void gluTessCallback(GLUtesselator* obj, GLenum type, void(*fn)()); .... I don't know where to go from there. Is C# really that much different from C++??
//declaring three variables GLUtesselator* gPtr =...; GLenum gType =...; void(* gFuncPtr )(void); gFuncPtr = ...; // call the function gluTessCallback(gPtr, gType, gFuncPtr);
wont compile under C#??