Ignore:
Timestamp:
Mar 1, 2001, 12:38:58 PM (24 years ago)
Author:
umoeller
Message:

Misc. changes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/helpers/dosh.c

    r38 r40  
    13171317 */
    13181318
    1319 BOOL doshQueryDirExist(PSZ pszDir)
     1319BOOL doshQueryDirExist(const char *pcszDir)
    13201320{
    13211321    FILESTATUS3 fs3;
    1322     APIRET arc = DosQueryPathInfo(pszDir, FIL_STANDARD, &fs3, sizeof(fs3));
     1322    APIRET arc = DosQueryPathInfo((PSZ)pcszDir,
     1323                                  FIL_STANDARD,
     1324                                  &fs3,
     1325                                  sizeof(fs3));
    13231326    if (arc == NO_ERROR)
    13241327        // file found:
Note: See TracChangeset for help on using the changeset viewer.