Desktop Functions: Smart Device Functions:
|
Search Results for "CreateRemoteThread" in [All]kernel32
static extern IntPtr CreateRemoteThread(IntPtr hProcess,
static extern IntPtr CreateRemoteThread(IntPtr hProcess,
static def CreateRemoteThread(hProcess as IntPtr, lpThreadAttributes as IntPtr, dwStackSize as int, lpStartAddress as IntPtr, lpParameter as IntPtr, dwCreationFlags as uint, ref lpThreadId as int) as IntPtr: Here's a sample of using CreateRemoteThread from C#: http://blogs.msdn.com/jmstall/archive/2006/09/28/managed-create-remote-thread.aspx Enums
''' <summary>Enables usage of the process handle in the CreateRemoteThread function to create a thread in the process.</summary>
"""Enables usage of the process handle in the CreateRemoteThread function to create a thread in the process.""" |