Changeset 3328 for trunk/src/winmm/waveout.cpp
- Timestamp:
- Apr 6, 2000, 10:36:29 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/winmm/waveout.cpp
r2985 r3328 1 /* $Id: waveout.cpp,v 1.1 3 2000-03-03 19:18:47sandervl Exp $ */1 /* $Id: waveout.cpp,v 1.14 2000-04-06 20:36:29 sandervl Exp $ */ 2 2 //#undef DEBUG 3 3 /* … … 56 56 return(WAVERR_BADFORMAT); 57 57 58 if(phwo == NULL)59 return(MMSYSERR_INVALPARAM);60 61 58 if(fdwOpen == WAVE_FORMAT_QUERY) { 62 59 if(DartWaveOut::queryFormat(pwfx->wFormatTag, pwfx->nChannels, pwfx->nSamplesPerSec, … … 66 63 else return(WAVERR_BADFORMAT); 67 64 } 65 66 if(phwo == NULL) 67 return(MMSYSERR_INVALPARAM); 68 68 69 69 if(fdwOpen == CALLBACK_WINDOW) {
Note:
See TracChangeset
for help on using the changeset viewer.