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

    r847 r907  
    77
    88  Copyright (c) 1993-97 M. Kimes
    9   Copyright (c) 2006, 2007 Steven H. Levine
     9  Copyright (c) 2006, 2008 Steven H. Levine
    1010
    1111  22 Jul 06 SHL Check more run time errors
     
    1616***********************************************************************/
    1717
     18#include <stdlib.h>
     19#include <string.h>
     20
    1821#define INCL_DOS
    1922#define INCL_WIN
    2023#define INCL_LONGLONG
    21 #include <os2.h>
    22 
    23 #include <stdlib.h>
    24 #include <stdio.h>
    25 #include <string.h>
    26 
    27 #include "fm3dll.h"
     24
    2825#include "fm3dlg.h"
    2926#include "fm3str.h"
     27#include "pathutil.h"                   // BldFullPathName
     28#include "errutil.h"                    // Dos_Error...
     29#include "strutil.h"                    // GetPString
     30#include "fm3dll.h"
    3031
    3132#pragma data_seg(DATA1)
     
    136137      BldFullPathName(temp, path, objtitle);
    137138      // sprintf(temp,
    138       //              "%s%s%s", (path) ? path : "", (path) ? "\\" : "", objtitle);
     139      //              "%s%s%s", (path) ? path : "", (path) ? "\\" : "", objtitle);
    139140      p = strrchr(temp, '.');
    140141      if (p) {
Note: See TracChangeset for help on using the changeset viewer.