[Home]
[Edit this page]
[Recent Changes]
[Special Pages]
[Help]
function_CreateThread
The CreateThread function creates a thread to execute within the address space of the calling process.
HANDLE CreateThread(
lpThreadAttributes, // pointer to thread security attributes
dwStackSize, // initial thread stack size, in bytes
lpStartAddress, // pointer to thread function
lpParameter, // argument for new thread
dwCreationFlags, // creation flags
lpThreadId // pointer to returned thread identifier
);
(for brevity I have ommitted the type declarations)
[Edit this page] [Page history] [What links here] [Discuss this topic] [Printer Friendly]
function_CreateThread
The CreateThread function creates a thread to execute within the address space of the calling process.
HANDLE CreateThread(
lpThreadAttributes, // pointer to thread security attributes
dwStackSize, // initial thread stack size, in bytes
lpStartAddress, // pointer to thread function
lpParameter, // argument for new thread
dwCreationFlags, // creation flags
lpThreadId // pointer to returned thread identifier
);
(for brevity I have ommitted the type declarations)
[Edit this page] [Page history] [What links here] [Discuss this topic] [Printer Friendly]
