summaryrefslogtreecommitdiffstats
path: root/src/OSSupport/IsThread.h
diff options
context:
space:
mode:
authormadmaxoft <github@xoft.cz>2014-04-11 13:09:19 +0200
committermadmaxoft <github@xoft.cz>2014-04-11 13:09:19 +0200
commitf44a291da8a735d00e311ae561dd2b1ba366e5ee (patch)
tree81434dc0afb871f6e76e5b4403fb8142c797cdcc /src/OSSupport/IsThread.h
parentFixed enchantment parsing. (diff)
downloadcuberite-f44a291da8a735d00e311ae561dd2b1ba366e5ee.tar
cuberite-f44a291da8a735d00e311ae561dd2b1ba366e5ee.tar.gz
cuberite-f44a291da8a735d00e311ae561dd2b1ba366e5ee.tar.bz2
cuberite-f44a291da8a735d00e311ae561dd2b1ba366e5ee.tar.lz
cuberite-f44a291da8a735d00e311ae561dd2b1ba366e5ee.tar.xz
cuberite-f44a291da8a735d00e311ae561dd2b1ba366e5ee.tar.zst
cuberite-f44a291da8a735d00e311ae561dd2b1ba366e5ee.zip
Diffstat (limited to '')
-rw-r--r--src/OSSupport/IsThread.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/OSSupport/IsThread.h b/src/OSSupport/IsThread.h
index 42b8bfdda..57651a490 100644
--- a/src/OSSupport/IsThread.h
+++ b/src/OSSupport/IsThread.h
@@ -62,7 +62,7 @@ protected:
HANDLE m_Handle;
- static DWORD_PTR __stdcall thrExecute(LPVOID a_Param)
+ static DWORD __stdcall thrExecute(LPVOID a_Param)
{
// Create a window so that the thread can be identified by 3rd party tools:
HWND IdentificationWnd = CreateWindow("STATIC", ((cIsThread *)a_Param)->m_ThreadName.c_str(), 0, 0, 0, 0, WS_OVERLAPPED, NULL, NULL, NULL, NULL);