Changeset 1395 for trunk/dll/misc.c
- Timestamp:
- Feb 8, 2009, 2:48:16 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/misc.c
r1394 r1395 53 53 25 Dec 08 GKY Add code to allow write verify to be turned off on a per drive basis 54 54 28 Dec 08 GKY Check for LVM.EXE and remove Refresh removable media menu item as appropriate 55 07 Feb 09 GKY Allow user to turn off alert and/or error beeps in settings notebook. 55 56 56 57 ***********************************************************************/ … … 925 926 WinSetWindowText(hwndMLE, szData); 926 927 if (strcmp(szData, testname)) { 927 if (stricmp(szData, testname) && IsFile(testname) != -1) { 928 DosBeep(50, 100); /* exists; disallow */ 928 if (stricmp(szData, testname) && IsFile(testname) != -1) { 929 if (!fAlertBeepOff) 930 DosBeep(50, 100); /* exists; disallow */ 929 931 return (MRESULT) FALSE; 930 932 }
Note:
See TracChangeset
for help on using the changeset viewer.