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

  1. /*
  2.  * fcntl.h
  3.  *
  4.  * Access constants for _open. Note that the permissions constants are
  5.  * in sys/stat.h (ick).
  6.  *
  7.  * This code 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.3 $
  23.  * $Author: colin $
  24.  * $Date: 1998/04/17 02:59:22 $
  25.  *
  26.  */
  27.  
  28. #ifndef __STRICT_ANSI__
  29.  
  30. #ifndef _FCNTL_H_
  31. #define _FCNTL_H_
  32.  
  33. /*
  34.  * It appears that fcntl.h should include io.h for compatibility...
  35.  */
  36. #include <io.h>
  37.  
  38. /* Specifiy one of these flags to define the access mode. */
  39. #define    _O_RDONLY    0
  40. #define _O_WRONLY    1
  41. #define _O_RDWR        2
  42.  
  43. /* Mask for access mode bits in the _open flags. */
  44. #define _O_ACCMODE    (_O_RDONLY|_O_WRONLY|_O_RDWR)
  45.  
  46. #define    _O_APPEND    0x0008    /* Writes will add to the end of the file. */
  47.  
  48. #define    _O_RANDOM    0x0010
  49. #define    _O_SEQUENTIAL    0x0020
  50. #define    _O_TEMPORARY    0x0040    /* Make the file dissappear after closing.
  51.                  * WARNING: Even if not created by _open! */
  52. #define    _O_NOINHERIT    0x0080
  53.  
  54. #define    _O_CREAT    0x0100    /* Create the file if it does not exist. */
  55. #define    _O_TRUNC    0x0200    /* Truncate the file if it does exist. */
  56. #define    _O_EXCL        0x0400    /* Open only if the file does not exist. */
  57.  
  58. /* NOTE: Text is the default even if the given _O_TEXT bit is not on. */
  59. #define    _O_TEXT        0x4000    /* CR-LF in file becomes LF in memory. */
  60. #define    _O_BINARY    0x8000    /* Input and output is not translated. */
  61. #define    _O_RAW        _O_BINARY
  62.  
  63. #ifndef    _NO_OLDNAMES
  64.  
  65. /* POSIX/Non-ANSI names for increased portability */
  66. #define    O_RDONLY    _O_RDONLY
  67. #define O_WRONLY    _O_WRONLY
  68. #define O_RDWR        _O_RDWR
  69. #define O_ACCMODE    _O_ACCMODE
  70. #define    O_APPEND    _O_APPEND
  71. #define    O_CREAT        _O_CREAT
  72. #define    O_TRUNC        _O_TRUNC
  73. #define    O_EXCL        _O_EXCL
  74. #define    O_TEXT        _O_TEXT
  75. #define    O_BINARY    _O_BINARY
  76. #define    O_TEMPORARY    _O_TEMPORARY
  77. #define O_NOINHERIT    _O_NOINHERIT
  78. #define O_SEQENTIAL    _O_SEQUENTIAL
  79. #define    O_RANDOM    _O_RANDOM
  80.  
  81. #endif    /* Not _NO_OLDNAMES */
  82.  
  83.  
  84. #ifndef RC_INVOKED
  85.  
  86. /*
  87.  * This variable determines the default file mode.
  88.  * TODO: Which flags work?
  89.  */
  90. #ifdef __MSVCRT__
  91. extern unsigned int* _imp___fmode;
  92. #define    _fmode    (*_imp___fmode)
  93. #else
  94. /* CRTDLL */
  95. extern unsigned int* _imp___fmode_dll;
  96. #define    _fmode    (*_imp___fmode_dll)
  97. #endif
  98.  
  99.  
  100. #ifdef    __cplusplus
  101. extern "C" {
  102. #endif
  103.  
  104. int    _setmode (int nHandle, int nAccessMode);
  105.  
  106. #ifndef    _NO_OLDNAMES
  107. int    setmode (int nHandle, int nAccessMode);
  108. #endif    /* Not _NO_OLDNAMES */
  109.  
  110. #ifdef    __cplusplus
  111. }
  112. #endif
  113.  
  114. #endif    /* Not RC_INVOKED */
  115.  
  116. #endif    /* Not _FCNTL_H_ */
  117.  
  118. #endif    /* Not __STRICT_ANSI__ */
  119.  
  120.