Ignore:
Timestamp:
Feb 21, 2002, 8:24:22 PM (23 years ago)
Author:
umoeller
Message:

misc. updates

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/helpers/memdebug_win.c

    r123 r142  
    201201
    202202    /*
    203      *@@ memdCreateRecordsVAC:
     203     *@@ CreateRecordsVAC:
    204204     *
    205205     *@@added V0.9.3 (2000-04-10) [umoeller]
    206206     */
    207207
    208     VOID memdCreateRecordsVAC(HWND hwndCnr)
     208    VOID CreateRecordsVAC(HWND hwndCnr)
    209209    {
    210210        // count heap items
     
    267267
    268268/*
    269  *@@ memdCreateRecords:
     269 *@@ CreateRecords:
    270270 *
    271271 *@@added V0.9.3 (2000-04-10) [umoeller]
    272272 */
    273273
    274 VOID memdCreateRecords(HWND hwndCnr,
    275                        PULONG pulTotalItems,
    276                        PULONG pulAllocatedItems,
    277                        PULONG pulFreedItems,
    278                        PULONG pulTotalBytes,
    279                        PULONG pulAllocatedBytes,
    280                        PULONG pulFreedBytes)
     274static VOID CreateRecords(HWND hwndCnr,
     275                          PULONG pulTotalItems,
     276                          PULONG pulAllocatedItems,
     277                          PULONG pulFreedItems,
     278                          PULONG pulTotalBytes,
     279                          PULONG pulAllocatedBytes,
     280                          PULONG pulFreedBytes)
    281281{
    282282    // count heap items
     
    411411 */
    412412
    413 SHORT EXPENTRY mnu_fnCompareIndex(PMEMRECORD pmrc1, PMEMRECORD  pmrc2, PVOID pStorage)
     413static SHORT EXPENTRY mnu_fnCompareIndex(PMEMRECORD pmrc1, PMEMRECORD  pmrc2, PVOID pStorage)
    414414{
    415415    pStorage = pStorage; // to keep the compiler happy
     
    429429 */
    430430
    431 SHORT EXPENTRY mnu_fnCompareSourceFile(PMEMRECORD pmrc1, PMEMRECORD  pmrc2, PVOID pStorage)
     431static SHORT EXPENTRY mnu_fnCompareSourceFile(PMEMRECORD pmrc1, PMEMRECORD  pmrc2, PVOID pStorage)
    432432{
    433433    HAB habDesktop = WinQueryAnchorBlock(HWND_DESKTOP);
     
    458458 */
    459459
    460 SHORT EXPENTRY mnu_fnCompareSize(PMEMRECORD pmrc1, PMEMRECORD  pmrc2, PVOID pStorage)
     460static SHORT EXPENTRY mnu_fnCompareSize(PMEMRECORD pmrc1, PMEMRECORD  pmrc2, PVOID pStorage)
    461461{
    462462    pStorage = pStorage; // to keep the compiler happy
     
    478478 */
    479479
    480 SHORT EXPENTRY mnu_fnCompareAddress(PMEMRECORD pmrc1, PMEMRECORD  pmrc2, PVOID pStorage)
     480static SHORT EXPENTRY mnu_fnCompareAddress(PMEMRECORD pmrc1, PMEMRECORD  pmrc2, PVOID pStorage)
    481481{
    482482    pStorage = pStorage; // to keep the compiler happy
     
    512512 */
    513513
    514 MRESULT EXPENTRY memd_fnwpMemDebug(HWND hwndClient, ULONG msg, MPARAM mp1, MPARAM mp2)
     514static MRESULT EXPENTRY memd_fnwpMemDebug(HWND hwndClient, ULONG msg, MPARAM mp1, MPARAM mp2)
    515515{
    516516    MRESULT mrc = 0;
     
    612612                    }
    613613
    614                     memdCreateRecords(hwndCnr,
    615                                       &ulTotalItems,
    616                                       &ulAllocatedItems,
    617                                       &ulFreedItems,
    618                                       &ulTotalBytes,
    619                                       &ulAllocatedBytes,
    620                                       &ulFreedBytes);
     614                    CreateRecords(hwndCnr,
     615                                  &ulTotalItems,
     616                                  &ulAllocatedItems,
     617                                  &ulFreedItems,
     618                                  &ulTotalBytes,
     619                                  &ulAllocatedBytes,
     620                                  &ulFreedBytes);
    621621
    622622                    BEGIN_CNRINFO()
Note: See TracChangeset for help on using the changeset viewer.