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

    r897 r907  
    77
    88  Copyright (c) 1993-98 M. Kimes
    9   Copyright (c) 2001, 2006 Steven H. Levine
     9  Copyright (c) 2001, 2008 Steven H. Levine
    1010
    1111  16 Oct 02 SHL Handle large partitions
     
    2727***********************************************************************/
    2828
     29#include <stdlib.h>
     30#include <string.h>
     31#include <ctype.h>
     32#include <share.h>
     33
    2934#define INCL_DOS
    3035#define INCL_WIN
    3136#define INCL_GPI
    3237#define INCL_LONGLONG
    33 #include <os2.h>
    34 
    35 #include <stdio.h>
    36 #include <stdlib.h>
    37 #include <string.h>
    38 #include <ctype.h>
    39 #include <share.h>
    40 
    41 #include "fm3dll.h"
     38
    4239#include "fm3dlg.h"
    4340#include "fm3str.h"
     41#include "makelist.h"                   // AddToList
     42#include "errutil.h"                    // Dos_Error...
     43#include "strutil.h"                    // GetPString
     44#include "fm3dll.h"
    4445
    4546#pragma data_seg(DATA1)
     
    541542
    542543          LISTINFO li;
    543           INT numfiles = 0, numalloc = 0;
     544          UINT numfiles = 0, numalloc = 0;
    544545
    545546          memset(&li, 0, sizeof(LISTINFO));
Note: See TracChangeset for help on using the changeset viewer.