Changeset 1673 for trunk/dll/cmdline.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/cmdline.c

    r1546 r1673  
    467467        WinSetDlgItemText(hwnd, EXEC_WARNING2, (CHAR *) GetPString(IDS_NOTDIRECTEXETEXT));
    468468      }
    469       else if (apptype) {               /* acceptable */
     469      else if (apptype) {               // acceptable
    470470
    471471        CHAR s[257];
     
    729729      WinQueryDlgItemText(hwnd, EXEC_CL, 1000, ex->commandline);
    730730      ex->flags = CheckExecutibleFlags(hwnd, 2);
    731       /*ex->flags = 0;
    732       if (WinQueryButtonCheckstate(hwnd, EXEC_MINIMIZED))
    733         ex->flags |= MINIMIZED;
    734       if (WinQueryButtonCheckstate(hwnd, EXEC_MAXIMIZED))
    735         ex->flags |= MAXIMIZED;
    736       if (WinQueryButtonCheckstate(hwnd, EXEC_FULLSCREEN))
    737         ex->flags |= FULLSCREEN;
    738       else
    739         ex->flags |= WINDOWED;
    740       if (WinQueryButtonCheckstate(hwnd, EXEC_INVISIBLE))
    741         ex->flags |= INVISIBLE;
    742       if (WinQueryButtonCheckstate(hwnd, EXEC_KEEP))
    743         ex->flags |= SEPARATEKEEP;
    744       else
    745         ex->flags |= SEPARATE;*/
    746731      strset(ex->environment, 0);
    747732      WinQueryDlgItemText(hwnd, EXEC_ENVIRON, 1000, ex->environment);
Note: See TracChangeset for help on using the changeset viewer.