Changeset 53 for trunk/include/helpers
- Timestamp:
- Apr 2, 2001, 12:38:55 PM (24 years ago)
- Location:
- trunk/include/helpers
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/helpers/dosh.h
r48 r53 315 315 BOOL doshQueryDirExist(const char *pcszDir); 316 316 317 APIRET doshCreatePath( PSZ pszPath,317 APIRET doshCreatePath(const char *pcszPath, 318 318 BOOL fHidden); 319 319 -
trunk/include/helpers/gpih.h
r34 r53 136 136 typedef GPIHSPLITPRESFONT *PGPIHSPLITPRESFONT; 137 137 138 BOOL XWPENTRY gpihLockLCIDs(VOID); 139 typedef BOOL XWPENTRY GPIHLOCKLCIDS(VOID); 140 typedef GPIHLOCKLCIDS *PGPIHLOCKLCIDS; 141 142 VOID XWPENTRY gpihUnlockLCIDs(VOID); 143 typedef VOID XWPENTRY GPIHUNLOCKLCIDS(VOID); 144 typedef GPIHUNLOCKLCIDS *PGPIHUNLOCKLCIDS; 145 138 146 LONG XWPENTRY gpihFindFont(HPS hps, 139 147 LONG lSize, … … 153 161 BOOL fInherit, 154 162 HPS hps, 155 PSZ pszDefaultFont,163 const char *pcszDefaultFont, 156 164 PFONTMETRICS pFontMetrics, 157 165 PLONG plSize); … … 159 167 BOOL fInherit, 160 168 HPS hps, 161 PSZ pszDefaultFont,169 const char *pcszDefaultFont, 162 170 PFONTMETRICS pFontMetrics, 163 171 PLONG plSize); -
trunk/include/helpers/linklist.h
r41 r53 10 10 */ 11 11 12 /* Copyright (C) 1997-200 0Ulrich Mller.12 /* Copyright (C) 1997-2001 Ulrich Mller. 13 13 * This file is part of the "XWorkplace helpers" source package. 14 14 * This is free software; you can redistribute it and/or modify … … 98 98 // changed V0.9.0 (99-10-22) [umoeller] 99 99 typedef FNSORTLIST *PFNSORTLIST; 100 101 /* 102 *@@ FOR_ALL_NODES: 103 * helper macro to iterator over all nodes in 104 * a list. 105 * 106 * Usage: 107 + 108 + PLINKLIST pll = ...; 109 + PLISTNODE pNode; 110 + 111 + FOR_ALL_NODES(pll, pNode) 112 + { 113 + PVOID pData = (PVOID)pNode->pItemData; 114 + } 115 + 116 * This really is a "for" loop, so you can "break" 117 * out of the loop. 118 * 119 *@@added V0.9.9 (2001-04-01) [umoeller] 120 */ 121 122 #define FOR_ALL_NODES(pll, pNode) for (pNode = lstQueryFirstNode(pll); (pNode); pNode = pNode->pNext) 100 123 101 124 /* ******************************************************************
Note:
See TracChangeset
for help on using the changeset viewer.