|
TerminateThread The TerminateThread function terminates a thread. VB4-32,5,6 Declare Function TerminateThread Lib "kernel32" (ByVal hThread As Long, ByVal dwExitCode As Long) As Long |
Operating Systems Supported |
Requires Windows NT 3.1 or later; Requires Windows 95 or later |
· hThread Identifies the thread to terminate. Windows NT: The handle must have THREAD_TERMINATE access. For more information, see Thread Objects.
· dwExitCode Specifies the exit code for the thread. Use the GetExitCodeThread function to retrieve a thread’s exit value. |
If the function succeeds, the return value is nonzero.
If the function fails, the return value is zero. To get extended error information, call GetLastError. |
|
|
|