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

    r551 r907  
    1 #define INCL_DOS
     1
     2/***********************************************************************
     3
     4  $Id$
     5
     6  Make directory dialog
     7
     8  Copyright (c) 1993-97 M. Kimes
     9  Copyright (c) 2004, 2007 Steven H.Levine
     10
     11  01 Aug 04 SHL Baseline
     12
     13***********************************************************************/
     14
     15#include <string.h>
     16#include <ctype.h>
     17
    218#define INCL_DOSERRORS
    319#define INCL_WIN
    4 
    5 #include <os2.h>
    6 #include <stdarg.h>
    7 #include <stdio.h>
    8 #include <stdlib.h>
    9 #include <string.h>
    10 #include <ctype.h>
    11 #include "fm3dll.h"
     20#define INCL_LONGLONG                   // dircnrs.h
     21
    1222#include "fm3dlg.h"
    1323#include "fm3str.h"
     24#include "errutil.h"                    // Dos_Error...
     25#include "strutil.h"                    // GetPString
     26#include "fm3dll.h"
    1427
    1528#pragma alloc_text(MKDIR,MassMkdir,SetDir,PMMkDir,SetTargetDir)
     
    1730APIRET MassMkdir(HWND hwndClient, CHAR * dir)
    1831{
    19 
    2032  APIRET last, was = 0;
    2133  CHAR *p;
Note: See TracChangeset for help on using the changeset viewer.