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

    r793 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  06 Jun 05 SHL Indent -i2
     
    1919***********************************************************************/
    2020
     21#include <stdlib.h>
     22#include <string.h>
     23#include <share.h>
     24
    2125#define INCL_DOS
    2226#define INCL_WIN
    23 #include <os2.h>
    24 
    25 #include <stdlib.h>
    26 #include <stdio.h>
    27 #include <string.h>
    28 #include <share.h>
    29 
    30 #include "fm3dll.h"
     27#define INCL_LONGLONG                   // dircnrs.h
     28
    3129#include "fm3dlg.h"
    3230#include "fm3str.h"
     31#include "makelist.h"                   // AddToList
     32#include "errutil.h"                    // Dos_Error...
     33#include "strutil.h"                    // GetPString
     34#include "fm3dll.h"
    3335
    3436static PSZ pszSrcFile = __FILE__;
     
    325327        BOOL append, binary;
    326328        CHAR **list = NULL, **test, szBuffer[CCHMAXPATH];
    327         INT numfiles = 0, numalloc = 0, error;
     329        UINT numfiles = 0, numalloc = 0;
     330        INT error;
    328331        SHORT x, y;
    329332
Note: See TracChangeset for help on using the changeset viewer.