Changeset 14 for trunk/include/helpers/stringh.h
- Timestamp:
- Dec 9, 2000, 8:19:42 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/helpers/stringh.h
r13 r14 16 16 /* 17 17 * Copyright (C) 1997-2000 Ulrich Mller. 18 * This file is part of the XWorkplacesource package.19 * XWorkplaceis free software; you can redistribute it and/or modify18 * This file is part of the "XWorkplace helpers" source package. 19 * This is free software; you can redistribute it and/or modify 20 20 * it under the terms of the GNU General Public License as published 21 21 * by the Free Software Foundation, in version 2 as it comes in the … … 70 70 ULONG strhWords(PSZ psz); 71 71 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; 73 75 74 76 PSZ strhThousandsDouble(PSZ pszTarget, double dbl, CHAR cThousands); … … 87 89 CHAR cTimeSep); 88 90 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; 96 106 97 107 #define STRH_BEGIN_CHARS "\x0d\x0a " … … 156 166 157 167 /* ****************************************************************** 158 * *159 * Miscellaneous *160 * *168 * 169 * Miscellaneous 170 * 161 171 ********************************************************************/ 162 172 163 173 VOID strhArrayAppend(PSZ *ppszRoot, 164 PSZ pszNew,174 const char *pcszNew, 165 175 PULONG pcbRoot); 166 176 … … 170 180 171 181 /* ****************************************************************** 172 * *173 * Wildcard matching *174 * *182 * 183 * Wildcard matching 184 * 175 185 ********************************************************************/ 176 186 … … 195 205 196 206 /* ****************************************************************** 197 * *198 * Fast string searches *199 * *207 * 208 * Fast string searches 209 * 200 210 ********************************************************************/ 201 211
Note:
See TracChangeset
for help on using the changeset viewer.