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

    r847 r907  
    77
    88  Copyright (c) 1993-98 M. Kimes
    9   Copyright (c) 2005, 2007 Steven H. Levine
     9  Copyright (c) 2005, 2008 Steven H. Levine
    1010
    1111  24 May 05 SHL Rework Win_Error usage
     
    2020  20 Aug 07 GKY Move #pragma alloc_text to end for OpenWatcom compat
    2121
    22 
    2322***********************************************************************/
     23
     24#include <stdlib.h>
     25#include <string.h>
     26#include <ctype.h>
    2427
    2528#define INCL_DOS
    2629#define INCL_DOSERRORS
    2730#define INCL_WIN
    28 #define INCL_LONGLONG
    29 #include <os2.h>
    30 
    31 #include <stdarg.h>
    32 #include <stdio.h>
    33 #include <stdlib.h>
    34 #include <string.h>
    35 #include <ctype.h>
    36 
     31#define INCL_LONGLONG                   // dircnrs.h
     32
     33#include "fm3str.h"
     34#include "filldir.h"                    // FileAttrToString...
     35#include "errutil.h"                    // Dos_Error...
     36#include "strutil.h"                    // GetPString
    3737#include "fm3dll.h"
    38 #include "fm3str.h"
    3938
    4039#pragma data_seg(DATA1)
Note: See TracChangeset for help on using the changeset viewer.