* Final fixes for VS2010 build.

This commit is contained in:
iProgramInCpp
2023-08-17 16:21:42 +03:00
parent acaf4aa614
commit 5821a5d5ef
4 changed files with 3 additions and 7 deletions

View File

@@ -38,7 +38,7 @@ CThread::CThread(CThreadFunction func, void* param)
m_thrd = CreateThread(
NULL, // not used
0, // initial stack size
func, // thread function
(LPTHREAD_START_ROUTINE)func, // thread function
param, // thread argument
0, // creation option
&dwThreadId // thread identifier (but does it really matter if I'm the one managing them...?)