@msdn=http://search.microsoft.com/search/results.aspx?qu=$$$ @pinvoke=http://pinvoke.net/$$$.htm Summary: Creates a new thread in the local or a remote process !!!!C# Signature: [DllImport("ntdll.dll", SetLastError=true)] static extern NTSTATUS NtCreateThreadEx(ref IntPtr threadHandle, UInt32 desiredAccess, IntPtr objectAttributes, IntPtr processHandle, IntPtr startAddress, IntPtr parameter, bool inCreateSuspended, Int32 stackZeroBits, Int32 sizeOfStack, Int32 maximumStackSize, IntPtr attributeList); !!!!Boo Signature: [DllImport("ntdll.dll", SetLastError : true)] def NtCreateThreadEx( ref threadHandle as IntPtr desiredAccess as UInt32, objectAttributes as IntPtr processHandle as IntPtr, startAddress as IntPtr, parameter as IntPtr, inCreateSuspended as bool, stackZeroBits as Int32, sizeOfStack as Int32, maximumStackSize as Int32, attributeList as IntPtr) as UInt32: pass !!!!User-Defined Types: None. !!!!Alternative Managed API: Do you know one? Please contribute it! !!!!Notes: None. !!!!Tips & Tricks: Please add some! !!!!Sample Code: Please add some! Documentation: NtCreateThreadEx@msdn on MSDN
Edit ntdll.NtCreateThr...
You do not have permission to change this page. If you feel this is in error, please send feedback with the contact link on the main page.