Changeset 163 for trunk/dll/grep.c
- Timestamp:
- May 26, 2005, 4:24:56 AM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/grep.c
r51 r163 7 7 8 8 Copyright (c) 1993-98 M. Kimes 9 Copyright (c) 2001, 2002 Steven H.Levine 10 11 Revisions 12 Feb 03 SHL - insert_grepfile: standardize EA math 12 12 Feb 03 SHL - doonefile: standardize EA math 9 Copyright (c) 2001, 2005 Steven H. Levine 10 11 12 Feb 03 SHL insert_grepfile: standardize EA math 12 12 Feb 03 SHL doonefile: standardize EA math 13 25 May 05 SHL Rework for ULONGLONG 14 25 May 05 SHL Rework for FillInRecordFromFFB 13 15 14 16 ***********************************************************************/ … … 16 18 #define INCL_DOS 17 19 #define INCL_WIN 18 20 #define INCL_LONGLONG 19 21 #include <os2.h> 22 20 23 #include <stdlib.h> 21 24 #include <string.h> … … 23 26 #include <stdio.h> 24 27 #include <share.h> 28 25 29 #include "fm3dll.h" 26 30 #include "fm3str.h" … … 591 595 dcd = INSTDATA(grep->hwndFiles); 592 596 for(x = 0; grep->insertffb[x]; x++) { 597 ULONGLONG ullBytes; 593 598 FillInRecordFromFFB(grep->hwndFiles, 594 599 pci, … … 612 617 if(dcd) { 613 618 DosEnterCritSec(); 614 dcd-> totalbytes += grep->insertedbytes;619 dcd->ullTotalBytes += grep->insertedbytes; 615 620 DosExitCritSec(); 616 621 }
Note:
See TracChangeset
for help on using the changeset viewer.