home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 January / PCWorld_2000-01_cd.bin / Software / Servis / Devc / _SETUP.4 / Group3 / direct.h < prev    next >
C/C++ Source or Header  |  1998-12-24  |  1KB  |  59 lines

  1. /*
  2.  * direct.h
  3.  *
  4.  * Functions for manipulating paths and directories (included from dir.h)
  5.  * plus functions for setting the current drive.
  6.  *
  7.  * This file is part of the Mingw32 package.
  8.  *
  9.  * Contributors:
  10.  *  Created by Colin Peters <colin@bird.fu.is.saga-u.ac.jp>
  11.  *
  12.  *  THIS SOFTWARE IS NOT COPYRIGHTED
  13.  *
  14.  *  This source code is offered for use in the public domain. You may
  15.  *  use, modify or distribute it freely.
  16.  *
  17.  *  This code is distributed in the hope that it will be useful but
  18.  *  WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
  19.  *  DISCLAMED. This includes but is not limited to warranties of
  20.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  21.  *
  22.  * $Revision: 2.2 $
  23.  * $Author: colin $
  24.  * $Date: 1998/01/26 04:45:56 $
  25.  *
  26.  */
  27.  
  28. #ifndef __STRICT_ANSI__
  29.  
  30. #ifndef    _DIRECT_H_
  31. #define    _DIRECT_H_
  32.  
  33. #include <dir.h>
  34.  
  35. #ifndef RC_INVOKED
  36.  
  37. #ifdef    __cplusplus
  38. extern "C" {
  39. #endif
  40.  
  41. /*
  42.  * You really shouldn't be using these. Use the Win32 API functions instead.
  43.  * However, it does make it easier to port older code.
  44.  */
  45. int    _getdrive ();
  46. int    _chdrive (int nDrive);
  47. char*    _getdcwd (int nDrive, char* caBuffer, int nBufLen);
  48.  
  49. #ifdef    __cplusplus
  50. }
  51. #endif
  52.  
  53. #endif    /* Not RC_INVOKED */
  54.  
  55. #endif    /* Not _DIRECT_H_ */
  56.  
  57. #endif    /* Not __STRICT_ANSI__ */
  58.  
  59.