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

    r793 r907  
    1818***********************************************************************/
    1919
     20#include <stdlib.h>
     21#include <string.h>
     22#include <ctype.h>
     23#include <stddef.h>                     // _threadid
     24#include <process.h>                    // _beginthread
     25
    2026#define INCL_DOS
    2127#define INCL_WIN
    2228#define INCL_GPI
    23 #include <os2.h>
    24 
    25 #include <stdarg.h>
    26 #include <stdio.h>
    27 #include <stdlib.h>
    28 #include <string.h>
    29 #include <ctype.h>
    30 #include <time.h>
    31 #include <stddef.h>
    32 #include <process.h>                    // _beginthread
    33 
    34 #include "fm3dll.h"
     29#define INCL_LONGLONG                   // dircnrs.h
     30
    3531#include "fm3dlg.h"
    3632#include "fm3str.h"
     33#include "errutil.h"                    // Dos_Error...
     34#include "strutil.h"                    // GetPString
     35#include "fm3dll.h"
    3736
    3837#pragma data_seg(DATA1)
Note: See TracChangeset for help on using the changeset viewer.