home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1999 March B / SCO_CASTOR4RRT.iso / uccs / root.14 / udk / usr / include / aouthdr.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-08-19  |  1.0 KB  |  28 lines

  1. /*
  2.  * Copyright (c) 1998 The Santa Cruz Operation, Inc.. All Rights Reserved. 
  3.  *                                                                         
  4.  *        THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF THE               
  5.  *                   SANTA CRUZ OPERATION INC.                             
  6.  *                                                                         
  7.  *   The copyright notice above does not evidence any actual or intended   
  8.  *   publication of such source code.                                      
  9.  */
  10.  
  11. #ifndef _AOUTHDR_H
  12. #define _AOUTHDR_H
  13. #ident    "@(#)sgs-head:common/head/aouthdr.h    2.8.2.2"
  14.  
  15. typedef    struct aouthdr {
  16.     short    magic;        /* see magic.h                */
  17.     short    vstamp;        /* version stamp            */
  18.     long    tsize;        /* text size in bytes, padded to FW
  19.                    bdry                    */
  20.     long    dsize;        /* initialized data "  "        */
  21.     long    bsize;        /* uninitialized data "   "        */
  22.     long    entry;        /* entry pt.                */
  23.     long    text_start;    /* base of text used for this file    */
  24.     long    data_start;    /* base of data used for this file    */
  25. } AOUTHDR;
  26.  
  27. #endif /*_AOUTHDR_H*/
  28.