What are the header and lib files needed for AfxBeginThread() in dev-C++

Started by
2 comments, last by nobodynews 16 years, 9 months ago
Thank you.
Advertisement
That function name looks suspiciously like a MFC function or method to me, and AFAIK MFC is a MSVC++-only API (barring things like Bristol's Wind/U, but that's for UN*X-like systems, and the pricing is likely outrageous).
ok thanks,
Then what functions, headers, and lib file should i use for multithreading in dev-C++?

Thanks for the help,
Lordcorm
Well, if you're going the external library route you can get boost which has a threading library. Alternatively you can read some of the MSDN documentation. Maybe read a few tutorials on it. There's also the pthreads library, but I think that's also a seperate download for dev-C++

Hope that gets you started.

C++: A Dialog | C++0x Features: Part1 (lambdas, auto, static_assert) , Part 2 (rvalue references) , Part 3 (decltype) | Write Games | Fix Your Timestep!

This topic is closed to new replies.

Advertisement