Changeset 168 for trunk/include/helpers


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

Fixes for ip widget.

Location:
trunk/include/helpers
Files:
2 edited

Legend:

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

    r159 r168  
    10591059    BOOL ctlMakeHotkeyEntryField(HWND hwndHotkeyEntryField);
    10601060
     1061    /* ******************************************************************
     1062     *
     1063     *   Color rectangle
     1064     *
     1065     ********************************************************************/
     1066
     1067    BOOL ctlMakeColorRect(HWND hwndStatic);
     1068    typedef BOOL CTLMAKECOLORRECT(HWND hwndStatic);
     1069    typedef CTLMAKECOLORRECT *PCTLMAKECOLORRECT;
     1070
    10611071#endif
    10621072
  • 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.