home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c082_144 / 1.ddi / RTLINSRC.ZIP / USER.H < prev   
Encoding:
C/C++ Source or Header  |  1992-06-10  |  921 b   |  21 lines

  1. /*------------------------------------------------------------------------
  2.  * filename - user.h
  3.  *
  4.  *      user-defined part of C++ I/O stream
  5.  *-----------------------------------------------------------------------*/
  6.  
  7. /*[]------------------------------------------------------------[]*/
  8. /*|                                                              |*/
  9. /*|     C/C++ Run Time Library - Version 4.0                     |*/
  10. /*|                                                              |*/
  11. /*|                                                              |*/
  12. /*|     Copyright (c) 1990, 1991 by Borland International        |*/
  13. /*|     All Rights Reserved.                                     |*/
  14. /*|                                                              |*/
  15. /*[]------------------------------------------------------------[]*/
  16.  
  17. union ios_user_union {
  18.     long lword;
  19.     void *pword;
  20. };
  21.