hi,
im trying to get a part of my program as a new thread. now, i know i need to define the thread as:
and start it withCode:void ThreadName( void* pParams )
but since the thread is a special kind of function, i need to pass several vars to it except that i dont know how... can anyone please explain this? or point me to a tutorial about this?Code:
long handle,code;
handle=_beginthread( Thread, 0, NULL );
im programming in C

