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

    r1400 r1673  
    8686        register INT i, y;
    8787
    88         /* Get the switch list information */
     88        // Get the switch list information
    8989        ulcEntries = WinQuerySwitchList(0, NULL, 0);
    9090        ulSize = sizeof(SWBLOCK) + sizeof(HSWITCH) + (ulcEntries + 4) *
    9191          (LONG) sizeof(SWENTRY);
    92         /* Allocate memory for list */
     92        // Allocate memory for list
    9393        pswb = xmalloc((unsigned)ulSize, pszSrcFile, __LINE__);
    9494        if (pswb) {
    95           /* Put the info in the list */
     95          // Put the info in the list
    9696          ulcEntries = WinQuerySwitchList(0, pswb, ulSize - sizeof(SWENTRY));
    97           /* do the dirty deed */
     97          // do the dirty deed
    9898          y = 0;
    9999          for (i = 0; i < pswb->cswentry; i++) {
Note: See TracChangeset for help on using the changeset viewer.