Ignore:
Timestamp:
Feb 17, 2000, 3:10:18 PM (26 years ago)
Author:
sandervl
Message:

Added new logging feature + fixed waveout query format bug

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 phaller Exp $ */
     1/* $Id: playsound.cpp,v 1.5 2000-02-17 14:09:32 sandervl Exp $ */
    22
    33/*
     
    1616 ****************************************************************************/
    1717
     18#define  INCL_BASE
     19#define  INCL_OS2MM
    1820#include <os2wrap.h>       //Odin32 OS/2 api wrappers
    1921#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"
    2228
    2329ODINDEBUGCHANNEL(WINMM-PLAYSOUND)
     
    4450{
    4551  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//  }
    4660  return(FALSE);
    4761}
Note: See TracChangeset for help on using the changeset viewer.