Changeset 142 for trunk/src/helpers/memdebug_win.c
- Timestamp:
- Feb 21, 2002, 8:24:22 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/helpers/memdebug_win.c
r123 r142 201 201 202 202 /* 203 *@@ memdCreateRecordsVAC:203 *@@ CreateRecordsVAC: 204 204 * 205 205 *@@added V0.9.3 (2000-04-10) [umoeller] 206 206 */ 207 207 208 VOID memdCreateRecordsVAC(HWND hwndCnr)208 VOID CreateRecordsVAC(HWND hwndCnr) 209 209 { 210 210 // count heap items … … 267 267 268 268 /* 269 *@@ memdCreateRecords:269 *@@ CreateRecords: 270 270 * 271 271 *@@added V0.9.3 (2000-04-10) [umoeller] 272 272 */ 273 273 274 VOID memdCreateRecords(HWND hwndCnr,275 PULONG pulTotalItems,276 PULONG pulAllocatedItems,277 PULONG pulFreedItems,278 PULONG pulTotalBytes,279 PULONG pulAllocatedBytes,280 PULONG pulFreedBytes)274 static VOID CreateRecords(HWND hwndCnr, 275 PULONG pulTotalItems, 276 PULONG pulAllocatedItems, 277 PULONG pulFreedItems, 278 PULONG pulTotalBytes, 279 PULONG pulAllocatedBytes, 280 PULONG pulFreedBytes) 281 281 { 282 282 // count heap items … … 411 411 */ 412 412 413 SHORT EXPENTRY mnu_fnCompareIndex(PMEMRECORD pmrc1, PMEMRECORD pmrc2, PVOID pStorage)413 static SHORT EXPENTRY mnu_fnCompareIndex(PMEMRECORD pmrc1, PMEMRECORD pmrc2, PVOID pStorage) 414 414 { 415 415 pStorage = pStorage; // to keep the compiler happy … … 429 429 */ 430 430 431 SHORT EXPENTRY mnu_fnCompareSourceFile(PMEMRECORD pmrc1, PMEMRECORD pmrc2, PVOID pStorage)431 static SHORT EXPENTRY mnu_fnCompareSourceFile(PMEMRECORD pmrc1, PMEMRECORD pmrc2, PVOID pStorage) 432 432 { 433 433 HAB habDesktop = WinQueryAnchorBlock(HWND_DESKTOP); … … 458 458 */ 459 459 460 SHORT EXPENTRY mnu_fnCompareSize(PMEMRECORD pmrc1, PMEMRECORD pmrc2, PVOID pStorage)460 static SHORT EXPENTRY mnu_fnCompareSize(PMEMRECORD pmrc1, PMEMRECORD pmrc2, PVOID pStorage) 461 461 { 462 462 pStorage = pStorage; // to keep the compiler happy … … 478 478 */ 479 479 480 SHORT EXPENTRY mnu_fnCompareAddress(PMEMRECORD pmrc1, PMEMRECORD pmrc2, PVOID pStorage)480 static SHORT EXPENTRY mnu_fnCompareAddress(PMEMRECORD pmrc1, PMEMRECORD pmrc2, PVOID pStorage) 481 481 { 482 482 pStorage = pStorage; // to keep the compiler happy … … 512 512 */ 513 513 514 MRESULT EXPENTRY memd_fnwpMemDebug(HWND hwndClient, ULONG msg, MPARAM mp1, MPARAM mp2)514 static MRESULT EXPENTRY memd_fnwpMemDebug(HWND hwndClient, ULONG msg, MPARAM mp1, MPARAM mp2) 515 515 { 516 516 MRESULT mrc = 0; … … 612 612 } 613 613 614 memdCreateRecords(hwndCnr,615 616 617 618 619 620 614 CreateRecords(hwndCnr, 615 &ulTotalItems, 616 &ulAllocatedItems, 617 &ulFreedItems, 618 &ulTotalBytes, 619 &ulAllocatedBytes, 620 &ulFreedBytes); 621 621 622 622 BEGIN_CNRINFO()
Note:
See TracChangeset
for help on using the changeset viewer.