Displaying 1 result from an estimated 1 matches for "killdecod".
2000 May 22
1
Winamp plugin compile problems and fix/docs
...d 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 anyone? There aren't any
c...