Retrieves a scripting-engine-defined identifier for the thread associated with the given Win32 thread.
HRESULT GetScriptThreadID( DWORD dwWin32ThreadID, // Win32 thread identifier. SCRIPTTHREADID *pstidThread // Receives scripting thread. identifier ); |
Parameters
- dwWin32ThreadID
[in] Thread identifier of a running Win32 thread in the current process. Use the IActiveScript::GetCurrentScriptThreadID function to retrieve the thread identifier of the currently executing thread.
- pstidThread
[out] Address of a variable that receives the script thread identifier associated with the given Win32 thread. The interpretation of this identifier is left to the scripting engine, but it can be just a copy of the Windows thread identifier. Note that if the Win32 thread terminates, this identifier becomes unassigned and may subsequently be assigned to another thread.
Return Value
Remarks
See Also