Changeset 1375 for trunk/dll/valid.c
- Timestamp:
- Jan 4, 2009, 6:08:06 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/valid.c
r1372 r1375 28 28 19 Jul 08 GKY Replace save_dir2(dir) with pFM2SaveDirectory 29 29 25 Dec 08 GKY Add code to allow write verify to be turned off on a per drive basis 30 03 Jan 09 GKY Check for system that is protectonly to gray out Dos/Win command lines and prevent 31 Dos/Win programs from being inserted into the execute dialog with message why. 32 03 Jan 08 GKY Modify IsExecutable to prevent some text files from being treated as executable 33 and prevent dlls from being loaded into execute dialog. 30 34 31 35 ***********************************************************************/ … … 611 615 stricmp(p, ".CMD") && 612 616 stricmp(p, ".BAT") && 613 stricmp(p, ".B MT"))))617 stricmp(p, ".BTM")))) 614 618 return FALSE; 615 619 if (!fProtectOnly) { … … 625 629 FAPPTYP_32BIT | 626 630 FAPPTYP_WINDOWSPROT31)))) || 627 (p && (!stricmp(p, ".CMD") || !stricmp(p, ".BAT") || !stricmp(p, ".B MT"))))631 (p && (!stricmp(p, ".CMD") || !stricmp(p, ".BAT") || !stricmp(p, ".BTM")))) 628 632 return TRUE; 629 633 } … … 635 639 FAPPTYP_BOUND | 636 640 FAPPTYP_32BIT)))) || 637 (p && (!stricmp(p, ".CMD") || !stricmp(p, ".B MT"))))641 (p && (!stricmp(p, ".CMD") || !stricmp(p, ".BTM")))) 638 642 return TRUE; 639 643 if (fProtectOnly && (apptype &
Note:
See TracChangeset
for help on using the changeset viewer.