Changeset 552 for trunk/dll/mainwnd.c
- Timestamp:
- Mar 1, 2007, 7:24:47 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/mainwnd.c
r551 r552 7 7 8 8 Copyright (c) 1993-98 M. Kimes 9 Copyright (c) 2001, 200 6Steven H. Levine9 Copyright (c) 2001, 2007 Steven H. Levine 10 10 11 11 11 Jun 02 SHL Drop obsolete xor code … … 24 24 17 Jul 06 SHL Use Runtime_Error 25 25 17 Aug 06 SHL Complain nicer if state name does not exist 26 18 Feb 07 GKY More drive type and icon support 26 27 27 28 ***********************************************************************/ … … 1955 1956 iconid = (driveflags[x] & DRIVE_REMOVABLE) ? 1956 1957 REMOVABLE_ICON : 1958 (driveflags[x] & DRIVE_VIRTUAL) ? 1959 VIRTUAL_ICON : 1957 1960 (driveflags[x] & DRIVE_REMOTE) ? 1958 1961 REMOTE_ICON : 1959 (driveflags[x] & DRIVE_ZIPSTREAM) ? DRIVE_ICON : DRIVE_ICON; 1962 (driveflags[x] & DRIVE_RAMDISK) ? 1963 RAMDISK_ICON : 1964 (driveflags[x] & DRIVE_ZIPSTREAM) ? 1965 ZIPSTREAM_ICON :DRIVE_ICON; 1960 1966 } 1961 1967 else
Note:
See TracChangeset
for help on using the changeset viewer.