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

    r891 r907  
    77
    88  Copyright (c) 1993-98 M. Kimes
    9   Copyright (c) 2003, 2007 Steven H. Levine
     9  Copyright (c) 2003, 2008 Steven H. Levine
    1010
    1111  11 Jun 03 SHL Add JFS and FAT32 support
     
    3939***********************************************************************/
    4040
     41#include <stdlib.h>
     42#include <string.h>
     43#include <ctype.h>
     44#include <share.h>
     45#include <malloc.h>                     // _heapmin
     46
    4147#define INCL_DOS
    4248#define INCL_WIN
    4349#define INCL_GPI
    4450#define INCL_LONGLONG
    45 #include <os2.h>
    46 
    47 #include <stdarg.h>
    48 #include <stdio.h>
    49 #include <stdlib.h>
    50 #include <string.h>
    51 #include <ctype.h>
    52 #include <share.h>
    53 #include <malloc.h>                     // headmin
    54 
    55 #include "fm3dll.h"
     51
    5652#include "fm3dlg.h"
    5753#include "fm3str.h"
     54#include "pathutil.h"                   // BldQuotedFileName
     55#include "errutil.h"                    // Dos_Error...
     56#include "strutil.h"                    // GetPString
     57#include "fm3dll.h"
    5858
    5959#pragma data_seg(DATA1)
Note: See TracChangeset for help on using the changeset viewer.