Changeset 221 for OCO/trunk/drv16/init.cpp
- Timestamp:
- Jul 17, 2007, 6:04:31 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
OCO/trunk/drv16/init.cpp
r134 r221 64 64 static char szCopyRight1[]= "Copyright 2000-2002 InnoTek Systemberatung GmbH"; 65 65 static char szCopyRight2[]= "Copyright 2002 IBM Corporation"; 66 #if 0 // fixme to be gone? 67 static char szCopyRight3[]= "Maintained by http://os2.kiev.ua/en/uniaud.php"; 68 #endif 66 static char szCopyRight3[]= "Maintained by http://uniaud.netlabs.org"; 69 67 static char szParamError[]= "Parameter parsing error!!"; 70 68 #if 0 // fixme to be gone? … … 173 171 if(DosOpen((PSZ)"ALSA32$", &hFile, &usAction, 0, 174 172 FILE_NORMAL, FILE_OPEN, OPEN_ACCESS_READWRITE | 175 OPEN_SHARE_DENYNONE | OPEN_FLAGS_WRITE_THROUGH, 173 OPEN_SHARE_DENYNONE | OPEN_FLAGS_WRITE_THROUGH 174 /* Rudi's suggestion */ | OPEN_FLAGS_NOINHERIT, 176 175 NULL ) == NO_ERROR) 177 176 { … … 196 195 current_device = 0; 197 196 // Build the Wave Playback Hardware object 198 new WAVEPLAY(current_device);197 pWavePlay = new WAVEPLAY(current_device); 199 198 new WAVEREC(current_device); 200 199
Note:
See TracChangeset
for help on using the changeset viewer.