Changeset 117 for trunk/include


Ignore:
Timestamp:
Nov 24, 2001, 2:54:10 PM (24 years ago)
Author:
umoeller
Message:

Tons of changes.

Location:
trunk/include/helpers
Files:
2 edited

Legend:

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

    r113 r117  
    119119                              PXSTRING pstrChanged);
    120120    #endif
     121
     122    /* ******************************************************************
     123     *
     124     *   Swappath
     125     *
     126     ********************************************************************/
     127
     128    BOOL XWPENTRY csysParseSwapPath(const char *pcszConfigSys,
     129                                    PSZ pszSwapPath,
     130                                    PULONG pulMinFree,
     131                                    PULONG pulMinSize);
     132    typedef BOOL XWPENTRY CSYSPARSESWAPPATH(const char *pcszConfigSys,
     133                                            PSZ pszSwapPath,
     134                                            PULONG pulMinFree,
     135                                            PULONG pulMinSize);
     136    typedef CSYSPARSESWAPPATH *PCSYSPARSESWAPPATH;
     137
     138    ULONG XWPENTRY csysQuerySwapperSize(VOID);
     139    typedef ULONG XWPENTRY CSYSQUERYSWAPPERSIZE(VOID);
     140    typedef CSYSQUERYSWAPPERSIZE *PCSYSQUERYSWAPPERSIZE;
     141
    121142#endif
    122143
  • trunk/include/helpers/dialog.h

    r111 r117  
    197197            WS_VISIBLE | SS_TEXT | DT_LEFT | DT_TOP | DT_WORDBREAK, \
    198198            id, CTL_COMMON_FONT,  0, {cx, -1}, COMMON_SPACING }
     199
     200    #define CONTROLDEF_ICON(hptr, id) { WC_STATIC, (PCSZ)(hptr), \
     201            WS_VISIBLE | SS_ICON | DT_LEFT | DT_VCENTER, \
     202            id, CTL_COMMON_FONT, 0, {-1, -1}, COMMON_SPACING }
     203
     204    #define CONTROLDEF_BITMAP(hbm, id) { WC_STATIC, (PCSZ)(hbm), \
     205            WS_VISIBLE | SS_BITMAP | DT_LEFT | DT_VCENTER, \
     206            id, CTL_COMMON_FONT, 0, {-1, -1}, COMMON_SPACING }
    199207
    200208    #define CONTROLDEF_DEFPUSHBUTTON(pcsz, id, cx, cy) { WC_BUTTON, pcsz, \
Note: See TracChangeset for help on using the changeset viewer.