Changeset 1673 for trunk/dll/winlist.c
- Timestamp:
- Dec 30, 2012, 7:51:01 PM (13 years ago)
- File:
-
- 1 edited
-
trunk/dll/winlist.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/winlist.c
r1400 r1673 86 86 register INT i, y; 87 87 88 / * Get the switch list information */88 // Get the switch list information 89 89 ulcEntries = WinQuerySwitchList(0, NULL, 0); 90 90 ulSize = sizeof(SWBLOCK) + sizeof(HSWITCH) + (ulcEntries + 4) * 91 91 (LONG) sizeof(SWENTRY); 92 / * Allocate memory for list */92 // Allocate memory for list 93 93 pswb = xmalloc((unsigned)ulSize, pszSrcFile, __LINE__); 94 94 if (pswb) { 95 / * Put the info in the list */95 // Put the info in the list 96 96 ulcEntries = WinQuerySwitchList(0, pswb, ulSize - sizeof(SWENTRY)); 97 / * do the dirty deed */97 // do the dirty deed 98 98 y = 0; 99 99 for (i = 0; i < pswb->cswentry; i++) {
Note:
See TracChangeset
for help on using the changeset viewer.
