Changeset 1673 for trunk/dll/getnames.c


Ignore:
Timestamp:
Dec 30, 2012, 7:51:01 PM (13 years ago)
Author:
Gregg Young
Message:

Update to Doxygen comment style Ticket 55. Also some minor code cleanup.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/getnames.c

    r1545 r1673  
    5151    if (!loadedudirs)
    5252      load_udirs();
    53     {                                   /* fill user list box */
     53    {                                   // fill user list box
    5454      ULONG ulDriveNum, ulDriveMap;
    5555      ULONG ulSearchCount;
     
    116116  case WM_CONTROL:
    117117    switch (SHORT1FROMMP(mp1)) {
    118     case 260:                           /* drives dropdown list */
     118    case 260:                           // drives dropdown list
    119119      switch (SHORT2FROMMP(mp1)) {
    120120      case CBN_SHOWLIST:
     
    125125      break;
    126126
    127     case 258:                           /* name entry field */
     127    case 258:                           // name entry field
    128128      switch (SHORT2FROMMP(mp1)) {
    129129      case EN_SETFOCUS:
     
    137137      break;
    138138
    139     case 264:                           /* dirs listbox */
     139    case 264:                           // dirs listbox
    140140      switch (SHORT2FROMMP(mp1)) {
    141141      case LN_SETFOCUS:
     
    149149      break;
    150150
    151     case 266:                           /* files listbox */
     151    case 266:                           // files listbox
    152152      switch (SHORT2FROMMP(mp1)) {
    153153      case LN_SETFOCUS:
     
    295295  if (!DosQueryPathInfo(filename, FIL_STANDARD, &fsa, sizeof(fsa))) {
    296296    if (fsa.attrFile & FILE_DIRECTORY) {
    297       /* device or directory */
     297      // device or directory
    298298      saymsg(MB_CANCEL | MB_ICONEXCLAMATION,
    299299             hwnd, filename, GetPString(IDS_EXISTSBUTNOTFILETEXT), filename);
     
    380380  MakeFullName(filename);
    381381  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
    383383      saymsg(MB_CANCEL | MB_ICONEXCLAMATION,
    384384             hwnd, filename, GetPString(IDS_EXISTSBUTNOTFILETEXT), filename);
Note: See TracChangeset for help on using the changeset viewer.