search for: ecodethread

Displaying 1 result from an estimated 1 matches for "ecodethread".

Did you mean: decodethread
2000 May 22
1
Winamp plugin compile problems and fix/docs
...e Cygnus environment (gcc, and a lot of other GNU utils) on Windows NT. _beginthread() is not found. That doesn't look like a function application code should ever call directly. I converted it to use CreateThread and it compiles and works. Change this: thread_handle = (HANDLE)_beginthread(DecodeThread,0, (void *)(&killDecod eThread) ); To this: thread_handle = (HANDLE)CreateThread(NULL,0,DecodeThread,(void *)(&killD ecodeThread),0,0); and then it works. No guarantees at all that this is correct and no warranty if it breaks anything. I have a working DLL now. Should I give it to any...