home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / gnu / djgpp / diffs / libgplus.5 / libio / streambu.h < prev    next >
Encoding:
Text File  |  1993-12-14  |  1.1 KB  |  39 lines

  1. *** orig/libgplus.5/libio/streambu.h    Sat Nov 13 18:51:08 1993
  2. --- src/libgplus.5/libio/streambu.h    Sat Nov 13 18:54:10 1993
  3. ***************
  4. *** 100,106 ****
  5.   #define _IO_TRUNC    16
  6.   #define _IO_NOCREATE    32
  7.   #define _IO_NOREPLACE    64
  8. ! #define _IO_BIN        128
  9.   
  10.   #ifdef _STREAM_COMPAT
  11.   enum state_value {
  12. --- 100,107 ----
  13.   #define _IO_TRUNC    16
  14.   #define _IO_NOCREATE    32
  15.   #define _IO_NOREPLACE    64
  16. ! #define _IO_BINARY    128
  17. ! #define _IO_TEXT    256
  18.   
  19.   #ifdef _STREAM_COMPAT
  20.   enum state_value {
  21. ***************
  22. *** 134,140 ****
  23.       trunc = _IO_TRUNC,
  24.       nocreate = _IO_NOCREATE,
  25.       noreplace = _IO_NOREPLACE,
  26. !     bin = _IOS_BIN };
  27.       enum seek_dir { beg, cur, end};
  28.       // ANSI: typedef enum seek_dir seekdir; etc
  29.       // NOTE: If adding flags here, before to update ios::bitalloc().
  30. --- 135,142 ----
  31.       trunc = _IO_TRUNC,
  32.       nocreate = _IO_NOCREATE,
  33.       noreplace = _IO_NOREPLACE,
  34. !     binary = _IO_BINARY,
  35. !     text = _IO_TEXT };
  36.       enum seek_dir { beg, cur, end};
  37.       // ANSI: typedef enum seek_dir seekdir; etc
  38.       // NOTE: If adding flags here, before to update ios::bitalloc().
  39.