AfxBeginThread may use in activex control(ATL)?
-
AfxBeginThread
is an MFC function. If you're using MFC then you can use this; if not usebeginthread
orbeginthreadex
(CRT) orCreateThread
(Win32). Unless you know what you're doing prefer the CRT functions. Steve -
AfxBeginThread
is an MFC function. If you're using MFC then you can use this; if not usebeginthread
orbeginthreadex
(CRT) orCreateThread
(Win32). Unless you know what you're doing prefer the CRT functions. SteveThe CRT functions are required if you're going use the CRT library (these functions initializes the CRT for each new thread). A fact which I was not aware until recently. :sigh:
-- 100% natural. No superstitious additives.
-
The CRT functions are required if you're going use the CRT library (these functions initializes the CRT for each new thread). A fact which I was not aware until recently. :sigh:
-- 100% natural. No superstitious additives.