Changeset 7196 for trunk/src/winmm/waveoutbase.cpp
- Timestamp:
- Oct 25, 2001, 12:47:43 AM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/winmm/waveoutbase.cpp
r6026 r7196 1 /* $Id: waveoutbase.cpp,v 1. 3 2001-06-16 11:35:22 sandervl Exp $ */1 /* $Id: waveoutbase.cpp,v 1.4 2001-10-24 22:47:42 sandervl Exp $ */ 2 2 3 3 /* … … 33 33 #include "misc.h" 34 34 #include "waveoutbase.h" 35 #include "initwinmm.h" 35 36 36 37 #define DBG_LOCALLOG DBG_waveoutbase … … 76 77 AmpOpenParms.pszDeviceType = ( PSZ ) MCI_DEVTYPE_AUDIO_AMPMIX; 77 78 78 rc = m ciSendCommand(0, MCI_OPEN,79 rc = mymciSendCommand(0, MCI_OPEN, 79 80 MCI_WAIT | MCI_OPEN_TYPE_ID | MCI_OPEN_SHAREABLE, 80 81 (PVOID) &AmpOpenParms, … … 89 90 90 91 // Close the device 91 m ciSendCommand(AmpOpenParms.usDeviceID, MCI_CLOSE, MCI_WAIT, (PVOID)&GenericParms, 0);92 mymciSendCommand(AmpOpenParms.usDeviceID, MCI_CLOSE, MCI_WAIT, (PVOID)&GenericParms, 0); 92 93 93 94 return 1;
Note:
See TracChangeset
for help on using the changeset viewer.