hi guys:
i've got a question with it that is if 'CreateThread' differ from 'AfxBeginThread'.oddly enough msdn dont mention this issue if for true what makes a distinction. thx.
have a nice day
Printable View
hi guys:
i've got a question with it that is if 'CreateThread' differ from 'AfxBeginThread'.oddly enough msdn dont mention this issue if for true what makes a distinction. thx.
have a nice day
AfxBeginThread() will call CreateThread() but does also some MFC specific initializations.
So if you are using MFC, you should always use AfxBeginThread().
_beginthreadex() important
Kuphryn
why is that ?Quote:
Originally Posted by kuphryn
C/C++ library thread-safe, completely
Kuphryn