Changeset 2812 for trunk/src/winmm/playsound.cpp
- Timestamp:
- Feb 17, 2000, 3:10:18 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/winmm/playsound.cpp
r588 r2812 1 /* $Id: playsound.cpp,v 1. 4 1999-08-19 18:46:05 phallerExp $ */1 /* $Id: playsound.cpp,v 1.5 2000-02-17 14:09:32 sandervl Exp $ */ 2 2 3 3 /* … … 16 16 ****************************************************************************/ 17 17 18 #define INCL_BASE 19 #define INCL_OS2MM 18 20 #include <os2wrap.h> //Odin32 OS/2 api wrappers 19 21 #include <odinwrap.h> 20 #include "win32type.h" 21 #include "misc.h" 22 #include <win32type.h> 23 #include <winconst.h> 24 #include <misc.h> 25 26 #define DBG_LOCALLOG DBG_playsound 27 #include "dbglocal.h" 22 28 23 29 ODINDEBUGCHANNEL(WINMM-PLAYSOUND) … … 44 50 { 45 51 dprintf(("WINMM:PlaySoundA not implemented\n")); 52 if((fdwSound & (SND_SYNC_W|SND_ASYNC_W)) == (SND_SYNC_W|SND_ASYNC_W)) { 53 // SetLastError(ERROR_INVALID_PARAMETER_W); 54 return FALSE; 55 } 56 // if(fdwSound & (SND_MEMORY_W|SND_ALIAS_W|SND_FILENAME_W|SND_RESOURCE_W) == (SND_SYNC_W|SND_ASYNC_W)) { 57 // SetLastError(ERROR_INVALID_PARAMETER_W); 58 // return FALSE; 59 // } 46 60 return(FALSE); 47 61 }
Note:
See TracChangeset
for help on using the changeset viewer.