search for: milasudril

Displaying 2 results from an estimated 2 matches for "milasudril".

2011 Jan 15
5
Wave audio problem
I have some problems with wave audio in Wine. It sais that my device does not support any format at all. I run the following Code: #include <windows.h> #include <cstdio> typedef int (*EnumDevicesCallback)(const WAVEOUTCAPS* caps,void* param_through); int enumDevices(EnumDevicesCallback onDevice,void* param_through) { unsigned int n_devs=waveOutGetNumDevs(); unsigned int i=0;
2011 Jan 16
5
Winelib Calling POSIX function from Windows application
Suppose that I have Windows application using Code: LoadLibrary followed by Code: GetProcAddress It should be possible to load a library implemented in terms of POSIX function but I do not understand how. Should I load the dll.so file generated by winegcc or do i need a plain .dll file?[/code]