search for: thread_handl

Displaying 3 results from an estimated 3 matches for "thread_handl".

Did you mean: thread_handle
2000 Jun 20
3
WinAmp Plugin
Hi, I downloaded afew off files from the site (www.vorbis.com) and also downloaded the winamp plugin (dll file), but I am unable to play the off files. -- Ramakrishnan.M | Phone : (+91-80)-5099132 DSP Applications Group, Texas Instruments | email : rkrishnan@ti.com Bangalore, India | rkrishnan_m@yahoo.com ---
2000 May 22
1
Winamp plugin compile problems and fix/docs
...lugin would not compile. I am using the 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 wor...
2000 Dec 13
2
WinAmp Plugin with HTTP Streaming Support
I finally figured out why I was having so many problems with MSVC 5. Compiler optimizations were doing BAD things. :-( Anyway, here's the goodies: http://www.javasource.org/in_vorbis.dll If you just want the plugin. http://www.javasource.org/in_vorbis.zip For the source. If somebody can get a working version from MSVC 6 please send it back to me and I'll make it available. That