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

    r793 r907  
    1919***********************************************************************/
    2020
     21#include <stdlib.h>
     22#include <string.h>
     23#include <share.h>
     24#include <io.h>                         // unlink
     25
    2126#define INCL_DOS
    2227#define INCL_WIN
    23 #include <os2.h>
    24 
    25 #include <stdio.h>
    26 #include <stdlib.h>
    27 #include <string.h>
    28 #include <ctype.h>
    29 #include <share.h>
    30 #include <io.h>                         // unlink
    31 
    32 #include "fm3dll.h"
     28#define INCL_LONGLONG                   // dircnrs.h
     29
    3330#include "fm3dlg.h"
    3431#include "fm3str.h"
    3532#include "mle.h"
     33#include "errutil.h"                    // Dos_Error...
     34#include "strutil.h"                    // GetPString
     35#include "fm3dll.h"
    3636
    3737static PSZ pszSrcFile = __FILE__;
Note: See TracChangeset for help on using the changeset viewer.