Changeset 123 for trunk/dll/viewinf.c
- Timestamp:
- Dec 5, 2004, 1:20:19 AM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/viewinf.c
r2 r123 1 2 /*********************************************************************** 3 4 $Id$ 5 6 Copyright (c) 1993-98 M. Kimes 7 Copyright (c) 2004 Steven H.Levine 8 9 Revisions 01 Aug 04 SHL - Rework lstrip/rstrip usage 10 11 ***********************************************************************/ 12 1 13 /* offset 107: title of INF file */ 2 14 … … 71 83 p = strtok(holdenv,";"); 72 84 while(p) { 73 lstrip(rstrip(p));85 bstrip(p); 74 86 if(*p) { 75 87 … … 111 123 fread(title,1,CCHMAXPATH - 2,fp); 112 124 title[CCHMAXPATH - 3] = 0; 113 lstrip(rstrip(title));125 bstrip(title); 114 126 fclose(fp); 115 127 } … … 334 346 CCHMAXPATH, 335 347 szBuffer); 336 lstrip(rstrip(szBuffer));348 bstrip(szBuffer); 337 349 sSelect = (SHORT)WinSendDlgItemMsg(hwnd, 338 350 VINF_LISTBOX, … … 527 539 1000, 528 540 szBuffer); 529 lstrip(rstrip(szBuffer));541 bstrip(szBuffer); 530 542 PrfWriteProfileData(fmprof, 531 543 FM3Str, … … 569 581 break; 570 582 p++; 571 lstrip(rstrip(p));583 bstrip(p); 572 584 if(*p) 573 585 ViewHelp(p); … … 594 606 if(p) { 595 607 p++; 596 lstrip(rstrip(p));608 bstrip(p); 597 609 if(*p) { 598 610 if(notfirst) … … 613 625 CCHMAXPATH * 2, 614 626 text); 615 lstrip(rstrip(text));627 bstrip(text); 616 628 fprintf(fp, 617 629 "\nVIEW FM2REF%s%s\nDEL %s\n",
Note:
See TracChangeset
for help on using the changeset viewer.