Changeset 1394 for trunk/dll/grep2.c
- Timestamp:
- Feb 5, 2009, 5:17:25 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/grep2.c
r1375 r1394 7 7 8 8 Copyright (c) 1993-98 M. Kimes 9 Copyright (c) 2004, 200 8Steven H. Levine9 Copyright (c) 2004, 2009 Steven H. Levine 10 10 11 11 01 Aug 04 SHL Rework lstrip/rstrip usage … … 84 84 *(CHAR *)mp2 = 0; 85 85 { 86 CHAR *p;87 CHAR *pp;86 PCSZ p; 87 PSZ pp; 88 88 89 89 p = GetPString(IDS_ENVVARNAMES); … … 239 239 WinSetDlgItemText(hwnd, GREP_MASK, lastmask); 240 240 WinSendDlgItemMsg(hwnd, 241 241 GREP_MASK, EM_SETSEL, MPFROM2SHORT(0, 8192), MPVOID); 242 242 size = sizeof(BOOL); 243 243 PrfQueryProfileData(fmprof, FM3Str, "RememberFlagsGrep", … … 247 247 size = sizeof(BOOL); 248 248 PrfQueryProfileData(fmprof, FM3Str, "Grep_Recurse", 249 249 (PVOID) & recurse, &size); 250 250 size = sizeof(BOOL); 251 251 PrfQueryProfileData(fmprof, FM3Str, "Grep_Absolute", 252 252 (PVOID) & absolute, &size); 253 253 size = sizeof(BOOL); 254 254 PrfQueryProfileData(fmprof, FM3Str, "Grep_Case", 255 255 (PVOID) & sensitive, &size); 256 256 size = sizeof(BOOL); 257 257 PrfQueryProfileData(fmprof, FM3Str, "Grep_Sayfiles", 258 258 (PVOID) & sayfiles, &size); 259 259 size = sizeof(BOOL); 260 260 PrfQueryProfileData(fmprof, FM3Str, "Grep_Searchfiles", 261 261 (PVOID) & searchFiles, &size); 262 262 size = sizeof(BOOL); 263 263 PrfQueryProfileData(fmprof, FM3Str, "Grep_SearchfEAs",
Note:
See TracChangeset
for help on using the changeset viewer.