Changeset 907 for trunk/dll/select.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/select.c

    r897 r907  
    77
    88  Copyright (c) 1993-98 M. Kimes
    9   Copyright (c) 2004, 2007 Steven H. Levine
     9  Copyright (c) 2004, 2008 Steven H. Levine
    1010
    1111  01 Aug 04 SHL Rework lstrip/rstrip usage
     
    3131***********************************************************************/
    3232
    33 #define INCL_DOS
    34 #define INCL_WIN
    35 #define INCL_LONGLONG
    36 #include <os2.h>
    37 
    38 #include <stdio.h>
    3933#include <stdlib.h>
    4034#include <string.h>
     
    4236#include <io.h>
    4337
     38#define INCL_DOS
     39#define INCL_WIN
     40#define INCL_LONGLONG
     41
     42#include "fm3str.h"
     43#include "filldir.h"                    // RemoveCnrItems
     44#include "makelist.h"                   // AddToList
     45#include "errutil.h"                    // Dos_Error...
     46#include "strutil.h"                    // GetPString
    4447#include "fm3dll.h"
    45 #include "fm3str.h"
    4648
    4749static PSZ pszSrcFile = __FILE__;
     
    5052{
    5153  PCNRITEM pci;
    52   INT numfiles = 0, numalloc = 0, x = 0;
     54  UINT numfiles = 0, numalloc = 0;
     55  UINT x = 0;
    5356  INT attribute = CRA_CURSORED;
    5457
Note: See TracChangeset for help on using the changeset viewer.