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

    r850 r907  
    77
    88  Copyright (c) 1993, 1998 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
     
    3333***********************************************************************/
    3434
     35#include <stdlib.h>
     36#include <string.h>
     37#include <ctype.h>
     38#include <share.h>
     39
     40#define INCL_DOS
    3541#define INCL_WIN
    3642#define INCL_WINSTDDRAG
    37 #define INCL_DOS
    3843#define INCL_LONGLONG
    39 #include <os2.h>
    40 
    41 #include <stdlib.h>
    42 #include <stdio.h>
    43 #include <string.h>
    44 #include <share.h>
    45 #include <ctype.h>
    46 
    47 #include "fm3dll.h"
     44
    4845#include "fm3dlg.h"
    4946#include "fm3str.h"
     47#include "avl.h"
     48#include "strutil.h"                    // GetPString
     49#include "errutil.h"                    // Runtime_Error
     50#include "fm3dll.h"
    5051
    5152static PSZ pszSrcFile = __FILE__;
Note: See TracChangeset for help on using the changeset viewer.