Changeset 907 for trunk/dll/attribs.c


Ignore:
Timestamp:
Jan 6, 2008, 8:26:17 AM (18 years ago)
Author:
Steven Levine
Message:

Avoid out of memory traps in Compare Directories
Rework Compare Directories progress display for 2 second update rate
Start refactoring to reduce dependence on fm3dll.h
Add timer services (IsITimerExpired etc.)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/attribs.c

    r847 r907  
    1515***********************************************************************/
    1616
     17#include <ctype.h>
     18
    1719#define INCL_DOS
    1820#define INCL_WIN
    19 #define INCL_LONGLONG
    20 #include <os2.h>
    21 
    22 #include <stdarg.h>
    23 #include <stdio.h>
    24 #include <stdlib.h>
    25 #include <string.h>
    26 #include <ctype.h>
    27 #include <time.h>
    28 
    29 #include "fm3dll.h"
     21
    3022#include "fm3dlg.h"
    3123#include "fm3str.h"
     24#include "makelist.h"                   // LISTINFO
     25#include "errutil.h"                    // Runtime_Error
     26#include "strutil.h"                    // GetPString
     27#include "fm3dll.h"
    3228
    3329static PSZ pszSrcFile = __FILE__;
     
    293289        {
    294290          CHAR szBuffer[CCHMAXPATH + 1];
    295           INT numfiles = 0, numalloc = 0, error;
     291          UINT numfiles = 0, numalloc = 0;
     292          INT error;
    296293
    297294          if (li->list)
Note: See TracChangeset for help on using the changeset viewer.