Changeset 1673 for trunk/dll/getnames.c
- Timestamp:
- Dec 30, 2012, 7:51:01 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/getnames.c
r1545 r1673 51 51 if (!loadedudirs) 52 52 load_udirs(); 53 { / * fill user list box */53 { // fill user list box 54 54 ULONG ulDriveNum, ulDriveMap; 55 55 ULONG ulSearchCount; … … 116 116 case WM_CONTROL: 117 117 switch (SHORT1FROMMP(mp1)) { 118 case 260: / * drives dropdown list */118 case 260: // drives dropdown list 119 119 switch (SHORT2FROMMP(mp1)) { 120 120 case CBN_SHOWLIST: … … 125 125 break; 126 126 127 case 258: / * name entry field */127 case 258: // name entry field 128 128 switch (SHORT2FROMMP(mp1)) { 129 129 case EN_SETFOCUS: … … 137 137 break; 138 138 139 case 264: / * dirs listbox */139 case 264: // dirs listbox 140 140 switch (SHORT2FROMMP(mp1)) { 141 141 case LN_SETFOCUS: … … 149 149 break; 150 150 151 case 266: / * files listbox */151 case 266: // files listbox 152 152 switch (SHORT2FROMMP(mp1)) { 153 153 case LN_SETFOCUS: … … 295 295 if (!DosQueryPathInfo(filename, FIL_STANDARD, &fsa, sizeof(fsa))) { 296 296 if (fsa.attrFile & FILE_DIRECTORY) { 297 / * device or directory */297 // device or directory 298 298 saymsg(MB_CANCEL | MB_ICONEXCLAMATION, 299 299 hwnd, filename, GetPString(IDS_EXISTSBUTNOTFILETEXT), filename); … … 380 380 MakeFullName(filename); 381 381 if (!DosQueryPathInfo(filename, FIL_STANDARD, &fsa, sizeof(fsa))) { 382 if (fsa.attrFile & FILE_DIRECTORY) { / * device or directory */382 if (fsa.attrFile & FILE_DIRECTORY) { // device or directory 383 383 saymsg(MB_CANCEL | MB_ICONEXCLAMATION, 384 384 hwnd, filename, GetPString(IDS_EXISTSBUTNOTFILETEXT), filename);
Note:
See TracChangeset
for help on using the changeset viewer.