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

    r847 r907  
    2121***********************************************************************/
    2222
     23#include <stdlib.h>
     24#include <string.h>
     25#include <stdarg.h>
     26#include <ctype.h>
     27
    2328#define INCL_DOS
    2429#define INCL_DOSERRORS
    2530#define INCL_WIN
    2631#define INCL_LONGLONG
    27 #include <os2.h>
    28 
    29 #include <io.h>
    30 #include <string.h>
    31 #include <stdlib.h>
    32 #include <stdio.h>
    33 #include <stdarg.h>
    34 #include <ctype.h>
    35 #include <time.h>
    36 
     32
     33#include "fm3str.h"
     34#include "errutil.h"                    // Dos_Error...
     35#include "strutil.h"                    // GetPString
    3736#include "fm3dll.h"
    38 #include "fm3str.h"
    3937
    4038static PSZ pszSrcFile = __FILE__;
Note: See TracChangeset for help on using the changeset viewer.