Programming Tips - How do I obtain the handle of the current thread?

Date: 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();