Changeset 907 for trunk/dll/autoview.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/autoview.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  12 Sep 02 SHL AutoObjProc: catch buff2 overflows
     
    2626***********************************************************************/
    2727
     28#include <stdlib.h>
     29#include <string.h>
     30#include <ctype.h>
     31#include <process.h>                    // _beginthread
     32
    2833#define INCL_DOS
    2934#define INCL_WIN
    3035#define INCL_GPI
    3136#define INCL_LONGLONG
    32 #include <os2.h>
    33 
    34 #include <stdlib.h>
    35 #include <stdio.h>
    36 #include <string.h>
    37 #include <ctype.h>
    38 #include <process.h>                    // _beginthread
    39 
    40 #include "fm3dll.h"
     37
    4138#include "fm3dlg.h"
    4239#include "fm3str.h"
    4340#include "mle.h"
     41#include "pathutil.h"                   // BldFullPathName
     42#include "errutil.h"                    // Dos_Error...
     43#include "strutil.h"                    // GetPString
     44#include "fm3dll.h"
    4445
    4546#pragma data_seg(DATA1)
Note: See TracChangeset for help on using the changeset viewer.