Ignore:
Timestamp:
Dec 9, 2000, 8:19:42 PM (25 years ago)
Author:
umoeller
Message:

Major updates; timers, LVM, miscellaneous.

File:
1 edited

Legend:

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

    r13 r14  
    1616/*
    1717 *      Copyright (C) 1997-2000 Ulrich M”ller.
    18  *      This file is part of the XWorkplace source package.
    19  *      XWorkplace is free software; you can redistribute it and/or modify
     18 *      This file is part of the "XWorkplace helpers" source package.
     19 *      This is free software; you can redistribute it and/or modify
    2020 *      it under the terms of the GNU General Public License as published
    2121 *      by the Free Software Foundation, in version 2 as it comes in the
     
    7070    ULONG strhWords(PSZ psz);
    7171
    72     PSZ strhThousandsULong(PSZ pszTarget, ULONG ul, CHAR cThousands);
     72    PSZ APIENTRY strhThousandsULong(PSZ pszTarget, ULONG ul, CHAR cThousands);
     73    typedef PSZ APIENTRY STRHTHOUSANDSULONG(PSZ pszTarget, ULONG ul, CHAR cThousands);
     74    typedef STRHTHOUSANDSULONG *PSTRHTHOUSANDSULONG;
    7375
    7476    PSZ strhThousandsDouble(PSZ pszTarget, double dbl, CHAR cThousands);
     
    8789                      CHAR cTimeSep);
    8890
    89     VOID strhDateTime(PSZ pszDate,
    90                       PSZ pszTime,
    91                       DATETIME *pDateTime,
    92                       ULONG ulDateFormat,
    93                       CHAR cDateSep,
    94                       ULONG ulTimeFormat,
    95                       CHAR cTimeSep);
     91    VOID APIENTRY strhDateTime(PSZ pszDate,
     92                               PSZ pszTime,
     93                               DATETIME *pDateTime,
     94                               ULONG ulDateFormat,
     95                               CHAR cDateSep,
     96                               ULONG ulTimeFormat,
     97                               CHAR cTimeSep);
     98    typedef VOID APIENTRY STRHDATETIME(PSZ pszDate,
     99                               PSZ pszTime,
     100                               DATETIME *pDateTime,
     101                               ULONG ulDateFormat,
     102                               CHAR cDateSep,
     103                               ULONG ulTimeFormat,
     104                               CHAR cTimeSep);
     105    typedef STRHDATETIME *PSTRHDATETIME;
    96106
    97107    #define STRH_BEGIN_CHARS    "\x0d\x0a "
     
    156166
    157167    /* ******************************************************************
    158      *                                                                  *
    159      *   Miscellaneous                                                  *
    160      *                                                                  *
     168     *
     169     *   Miscellaneous
     170     *
    161171     ********************************************************************/
    162172
    163173    VOID strhArrayAppend(PSZ *ppszRoot,
    164                          PSZ pszNew,
     174                         const char *pcszNew,
    165175                         PULONG pcbRoot);
    166176
     
    170180
    171181    /* ******************************************************************
    172      *                                                                  *
    173      *   Wildcard matching                                              *
    174      *                                                                  *
     182     *
     183     *   Wildcard matching
     184     *
    175185     ********************************************************************/
    176186
     
    195205
    196206    /* ******************************************************************
    197      *                                                                  *
    198      *   Fast string searches                                           *
    199      *                                                                  *
     207     *
     208     *   Fast string searches
     209     *
    200210     ********************************************************************/
    201211
Note: See TracChangeset for help on using the changeset viewer.