Beispiel #1
0
 /// <summary>
 /// Resumes execution of a given thread.
 /// </summary>
 /// <param name="hThread">Handle to the thread that will be suspended.</param>
 /// <returns>Returns (DWORD)-1 on failure, otherwise the previous suspend count of the thread.</returns>
 public static uint ResumeThread(IntPtr hThread)
 {
     return(Imports.ResumeThread(hThread));
 }