1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dllproc/base/createthread.asp
HANDLE WINAPI CreateThread(
LPSECURITY_ATTRIBUTES lpThreadAttributes,
SIZE_T dwStackSize,
LPTHREAD_START_ROUTINE lpStartAddress,
LPVOID lpParameter,
DWORD dwCreationFlags,
LPDWORD lpThreadId
);
[...]
lpThreadAttributes : A pointer to a SECURITY_ATTRIBUTES structure that determines
whether the returned handle can be inherited by child processes.
[...]
*Détermine si le handle peut être hérité par un processus fils ou pas. |
Partager