Changeset 697 for trunk/dll/valid.c


Ignore:
Timestamp:
Jun 17, 2007, 5:59:25 AM (18 years ago)
Author:
Steven Levine
Message:

More OpenWatcom compatibility updates

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/valid.c

    r689 r697  
    77
    88  Copyright (c) 1993, 1998 M. Kimes
    9   Copyright (c) 2002, 2006 Steven H.Levine
     9  Copyright (c) 2002, 2007 Steven H.Levine
    1010
    1111  23 Nov 02 SHL RootName: rework for sanity
     
    2222  07 Jan 07 GKY Move error strings etc. to string file
    2323  18 Feb 07 GKY Add more drive types and icons
     24  16 Jun 07 SHL Update for OpenWatcom
    2425
    2526***********************************************************************/
     
    515516    p = strrchr(filename, '.');
    516517    if (p)
    517       ret = DosQAppType(filename, &apptype);
     518      ret = DosQueryAppType(filename, &apptype);
    518519    else {
    519520
     
    522523      strcpy(fname, filename);
    523524      strcat(fname, ".");
    524       ret = DosQAppType(fname, &apptype);
     525      ret = DosQueryAppType(fname, &apptype);
    525526    }
    526527    if ((!ret && (!apptype ||
Note: See TracChangeset for help on using the changeset viewer.