Ignore:
Timestamp:
Jun 2, 2002, 10:50:25 PM (23 years ago)
Author:
umoeller
Message:

Fixes for ip widget.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/helpers/dialog.h

    r166 r168  
    479479    } DLGARRAY, *PDLGARRAY;
    480480
    481     APIRET dlghCreateArray(ULONG cMaxItems,
    482                            PDLGARRAY *ppArray);
     481    APIRET dlghCreateArray(ULONG cMaxItems, PDLGARRAY *ppArray);
     482    typedef APIRET DLGHCREATEARRAY(ULONG cMaxItems, PDLGARRAY *ppArray);
     483    typedef DLGHCREATEARRAY *PDLGHCREATEARRAY;
    483484
    484485    APIRET dlghFreeArray(PDLGARRAY *ppArray);
     486    typedef APIRET DLGHFREEARRAY(PDLGARRAY *ppArray);
     487    typedef DLGHFREEARRAY *PDLGHFREEARRAY;
    485488
    486489    APIRET dlghAppendToArray(PDLGARRAY pArray,
    487490                             PCDLGHITEM paItems,
    488491                             ULONG cItems);
     492    typedef APIRET DLGHAPPENDTOARRAY(PDLGARRAY pArray,
     493                                     PCDLGHITEM paItems,
     494                                     ULONG cItems);
     495    typedef DLGHAPPENDTOARRAY *PDLGHAPPENDTOARRAY;
    489496
    490497    /* ******************************************************************
Note: See TracChangeset for help on using the changeset viewer.