Changeset 104
- Timestamp:
- Sep 27, 2001, 10:15:15 PM (24 years ago)
- Location:
- trunk/include/helpers
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/helpers/apmh.h
r92 r104 176 176 usLowestAPMVersion; 177 177 178 BOOL fAlreadyRead; 179 // TRUE after the first call to aphReadStatus 180 178 181 // the following are valid after a call to 179 182 // apmhReadStatus … … 198 201 typedef APMHOPEN *PAPMHOPEN; 199 202 200 APIRET APIENTRY apmhReadStatus(PAPM pApm );201 typedef APIRET APIENTRY APMHREADSTATUS(PAPM pApm );203 APIRET APIENTRY apmhReadStatus(PAPM pApm, PBOOL pfChanged); 204 typedef APIRET APIENTRY APMHREADSTATUS(PAPM pApm, PBOOL pfChanged); 202 205 typedef APMHREADSTATUS *PAPMHREADSTATUS; 203 206 -
trunk/include/helpers/dialog.h
r95 r104 305 305 const MSGBOXSTRINGS *pStrings); 306 306 307 #define TEBF_REMOVETILDE 0x0001 308 #define TEBF_REMOVEELLIPSE 0x0002 309 #define TEBF_SELECTALL 0x0004 310 311 PSZ dlghTextEntryBox(HWND hwndOwner, 312 const char *pcszTitle, 313 const char *pcszDescription, 314 const char *pcszDefault, 315 const char *pcszOK, 316 const char *pcszCancel, 317 ULONG ulMaxLen, 318 ULONG fl, 319 const char *pcszFont); 320 307 321 VOID dlghSetPrevFocus(PVOID pvllWindows); 308 322 -
trunk/include/helpers/stringh.h
r91 r104 191 191 ********************************************************************/ 192 192 193 #define FNM_MATCH 0 194 #define FNM_NOMATCH 1 195 #define FNM_ERR 2 196 197 #define FNM_NOESCAPE 16 198 #define FNM_PATHNAME 32 199 #define FNM_PERIOD 64 200 201 #define _FNM_STYLE_MASK 15 202 203 #define _FNM_POSIX 0 204 #define _FNM_OS2 1 205 #define _FNM_DOS 2 206 207 #define _FNM_IGNORECASE 128 208 #define _FNM_PATHPREFIX 256 209 210 BOOL strhMatchOS2(const unsigned char* pcszMask, const unsigned char* pcszName); 193 #define FNM_MATCH 0 194 #define FNM_NOMATCH 1 195 #define FNM_ERR 2 196 197 #define FNM_NOESCAPE 16 198 #define FNM_PATHNAME 32 199 #define FNM_PERIOD 64 200 201 #define FNM_STYLE_MASK 15 202 203 #define FNM_POSIX 0 204 #define FNM_OS2 1 205 #define FNM_DOS 2 206 207 #define FNM_IGNORECASE 128 208 #define FNM_PATHPREFIX 256 209 210 BOOL strhMatchOS2(const char *pcszMask, const char *pcszName); 211 212 BOOL strhMatchExt(const char *pcszMask, 213 const char *pcszName, 214 unsigned flags); 211 215 212 216 /* ******************************************************************
Note:
See TracChangeset
for help on using the changeset viewer.