Changeset 479 for GPL/trunk/drv32
- Timestamp:
- May 1, 2010, 9:49:10 PM (16 years ago)
- Location:
- GPL/trunk/drv32
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
GPL/trunk/drv32/dispatch.c
r235 r479 96 96 97 97 #ifdef DEBUG 98 printk("StratIOCtl \n");98 printk("StratIOCtl %d\n", rp->Function); 99 99 #endif 100 100 if (rp->Category != CAT_IOCTL_OSS32) -
GPL/trunk/drv32/idc.c
r386 r479 84 84 OSSSTREAMID streamId = 0; 85 85 86 rc = OSS32_WaveOpen(pPacket->open.devicenr, pPacket->open.streamtype, &streamId, pcm_device, pPacket->fileid);86 rc = OSS32_WaveOpen(pPacket->open.devicenr, pPacket->open.streamtype, &streamId, pcm_device, (USHORT)pPacket->fileid); /* DAZ cast added to stop compiler warning */ 87 87 pPacket->streamid = streamId; 88 88 return rc; … … 137 137 } 138 138 139 case IDC32_WAVE_GETHWPTR:139 case IDC32_WAVE_GETHWPTR: 140 140 { 141 141 ULONG position = 0; … … 145 145 } 146 146 147 case IDC32_WAVE_SETVOLUME:147 case IDC32_WAVE_SETVOLUME: 148 148 return OSS32_WaveSetVolume(pPacket->streamid, pPacket->setwavevol.volume); 149 149 -
GPL/trunk/drv32/parse.c
r32 r479 46 46 extern "C" short int midi_port; 47 47 48 #ifdef DEBUG48 #ifdef COMM_DEBUG 49 49 extern "C" short int MAGIC_COMM_PORT; 50 50 #endif … … 223 223 break; 224 224 #endif 225 #ifdef DEBUG225 #ifdef COMM_DEBUG 226 226 case 'P': 227 227 if(*pszOption == '0') {
Note:
See TracChangeset
for help on using the changeset viewer.
