Commit 9c777d7e authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

sound.drv16: Enable compilation with long types.

parent 36052f01
EXTRADEFS = -DWINE_NO_LONG_TYPES
MODULE = sound.drv16
EXTRADLLFLAGS = -m16 -Wb,--main-module,winmm.dll
......
......@@ -97,7 +97,7 @@ INT16 WINAPI SetSoundNoise16(INT16 nSource, INT16 nDuration)
*/
INT16 WINAPI SetVoiceSound16(INT16 nVoice, DWORD lFrequency, INT16 nDuration)
{
FIXME("(%d, %d, %d): stub\n",nVoice,lFrequency, nDuration);
FIXME("(%d, %ld, %d): stub\n",nVoice,lFrequency, nDuration);
return 0;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment