home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / cset21v1.zip / IBMCPP / INCLUDE / DIRECT.H < prev    next >
Text File  |  1993-09-17  |  2KB  |  63 lines

  1. #pragma info( none )
  2. #ifndef __CHKHDR__
  3.    #pragma info( none )
  4. #endif
  5. #pragma info( restore )
  6.  
  7. #ifndef __direct_h
  8.    #define __direct_h
  9.  
  10.    #ifdef __cplusplus
  11.       extern "C" {
  12.    #endif
  13.  
  14.    /********************************************************************/
  15.    /*  <direct.h> header file                                          */
  16.    /*                                                                  */
  17.    /*  Licensed Materials - Property of IBM                            */
  18.    /*                                                                  */
  19.    /*  IBM C/C++ Tools Version 2.01                                    */
  20.    /*  Copyright (C) International Business Machines Corp., 1991,1993  */
  21.    /*  All rights reserved                                             */
  22.    /*                                                                  */
  23.    /*  US Government Users Restricted Rights -                         */
  24.    /*  Use, duplication, or disclosure restricted                      */
  25.    /*  by GSA ADP Schedule Contract with IBM Corp.                     */
  26.    /*                                                                  */
  27.    /********************************************************************/
  28.  
  29.    #if defined(__EXTENDED__)
  30.  
  31.       int    _Optlink _chdir( char * );
  32.       char * _Optlink _getcwd( char *, int );
  33.       int    _Optlink _mkdir( char * );
  34.       int    _Optlink _rmdir( char * );
  35.  
  36.       int    _Optlink chdir( char * );
  37.       char * _Optlink getcwd( char *, int );
  38.       int    _Optlink mkdir( char * );
  39.       int    _Optlink rmdir( char * );
  40.  
  41.       #pragma map( chdir , "_chdir"  )
  42.       #pragma map( getcwd, "_getcwd" )
  43.       #pragma map( mkdir , "_mkdir"  )
  44.       #pragma map( rmdir , "_rmdir"  )
  45.  
  46.       int    _Optlink _chdrive( int );
  47.       char * _Optlink _getdcwd( int , char *, int );
  48.       int    _Optlink _getdrive( void );
  49.  
  50.    #endif
  51.  
  52.    #ifdef __cplusplus
  53.       }
  54.    #endif
  55.  
  56. #endif
  57.  
  58. #pragma info( none )
  59. #ifndef __CHKHDR__
  60.    #pragma info( restore )
  61. #endif
  62. #pragma info( restore )
  63.