Changeset 468 for OCO/trunk/drv16/midistrm.cpp
- Timestamp:
- Nov 4, 2009, 4:21:24 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
OCO/trunk/drv16/midistrm.cpp
r33 r468 185 185 ULONG MIDISTREAM::StartStream(void) 186 186 { 187 dprintf(("MIDISTREAM::StartStream %lx %lx", (void far *)this, StreamId));187 // dprintf(("MIDISTREAM::StartStream %lx %lx", (void far *)this, StreamId)); 188 188 189 189 state = S_Init; // Reset parser state. … … 206 206 { 207 207 if(ulStreamState == STREAM_STOPPED) { 208 dprintf(("MIDISTREAM::StopStream %lx (already stopped)", StreamId));208 // dprintf(("MIDISTREAM::StopStream %lx (already stopped)", StreamId)); 209 209 pControl->ulTime = GetCurrentTime(); 210 210 return NO_ERROR; 211 211 } 212 212 213 dprintf(("MIDISTREAM::StopStream %lx %lx", (void far *)this, StreamId));213 // dprintf(("MIDISTREAM::StopStream %lx %lx", (void far *)this, StreamId)); 214 214 ulStreamState = STREAM_STOPPED; 215 215 pahw->Stop(StreamId); … … 223 223 ULONG MIDISTREAM::PauseStream(PCONTROL_PARM pControl) 224 224 { 225 dprintf(("MIDISTREAM::PauseStream %lx %lx", (void far *)this, StreamId));225 // dprintf(("MIDISTREAM::PauseStream %lx %lx", (void far *)this, StreamId)); 226 226 if (ulStreamState == STREAM_PAUSED) { // is the stream paused? 227 227 DebugInt3(); … … 239 239 ULONG MIDISTREAM::ResumeStream(void) 240 240 { 241 dprintf(("MIDISTREAM::ResumeStream %lx %lx", (void far *)this, StreamId));241 // dprintf(("MIDISTREAM::ResumeStream %lx %lx", (void far *)this, StreamId)); 242 242 if (ulStreamState != STREAM_PAUSED) { // is the stream paused? 243 243 DebugInt3(); … … 275 275 STREAM(streamtype, filesysnum, mixerStreamId) 276 276 { 277 dprintf(("MIDISTREAM::ctor"));277 // dprintf(("MIDISTREAM::ctor")); 278 278 279 279 // get the pointer to the hardware object … … 281 281 if(pahw) { 282 282 if(pahw->Open(0, streamtype, filesysnum, &StreamId) == FALSE) { 283 dprintf(("MIDISTREAM ctor: open failed!!"));283 // dprintf(("MIDISTREAM ctor: open failed!!")); 284 284 DebugInt3(); 285 285 }
Note:
See TracChangeset
for help on using the changeset viewer.