http://bugs.winehq.org/show_bug.cgi?id=3716
------- Additional Comments From infyquest@gmail.com 2005-06-11 08:51 ------- Hi Robert, I made a patch that tells you all the audio modules detected.(which has been in the CVS) By Default the its being set to OSS as it being the more stable one even if there is more than one. For some other audio modules there is no accurate mechanism for detecting them like nas, audioIO(Solaris). try this small program after you unload the modules for oss and also after removing the /dev entries
void main() { int fd = open("/dev/dsp", O_WRONLY | O_NONBLOCK);
if(fd) { close(fd); printf("OSS Detected\n"); } }