Changeset 163 for trunk/dll/grep.c


Ignore:
Timestamp:
May 26, 2005, 4:24:56 AM (20 years ago)
Author:
root
Message:

Rework for ULONGLONG
Rework for FillInRecordFromFFB

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/grep.c

    r51 r163  
    77
    88  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
    1315
    1416***********************************************************************/
     
    1618#define INCL_DOS
    1719#define INCL_WIN
    18 
     20#define INCL_LONGLONG
    1921#include <os2.h>
     22
    2023#include <stdlib.h>
    2124#include <string.h>
     
    2326#include <stdio.h>
    2427#include <share.h>
     28
    2529#include "fm3dll.h"
    2630#include "fm3str.h"
     
    591595    dcd = INSTDATA(grep->hwndFiles);
    592596    for(x = 0; grep->insertffb[x]; x++) {
     597      ULONGLONG ullBytes;
    593598      FillInRecordFromFFB(grep->hwndFiles,
    594599                          pci,
     
    612617    if(dcd) {
    613618      DosEnterCritSec();
    614        dcd->totalbytes += grep->insertedbytes;
     619       dcd->ullTotalBytes += grep->insertedbytes;
    615620      DosExitCritSec();
    616621    }
Note: See TracChangeset for help on using the changeset viewer.