Hi, i'm havnig problem with calling CreateThread. The problem is that it gives me a conversion error from const void* to void*
DWORD dwThreadId;
HANDLE myThread;
myThread = CreateThread(
NULL,
0,
MyThreadFunction,
"HELLO",
0,
&dwThreadId);
dwThreadId id is the problem, the function is supose to take a pointer to a DWORD.
Thanks for any help
Cgris