Browse - programming tips - win32 get current thread handleDate: 2008jul29 Platform: win32 Q. How do I obtain the handle of the current thread? A. Use GetCurrentThread() like this: HANDLE h = GetCurrentThread(); To get the current thread ID do this: DWORD id = GetCurrentThreadId();
Add a commentSign in to add a comment | Advertisements:
|