home *** CD-ROM | disk | FTP | other *** search
/ Programmer Plus 2007 / Programmer-Plus-2007.iso / Programming / Compilers / digital marsC compier / dm / include / Aouthdr.h < prev    next >
Encoding:
C/C++ Source or Header  |  2001-03-16  |  687 b   |  31 lines

  1. /* Copyright (C) 1986-2001 by Digital Mars. $Revision: 1.1.1.1 $ */
  2. #if __SC__ || __RCC__
  3. #pragma once
  4. #endif
  5.  
  6. #ifndef __AOUTHDR_H
  7. #define __AOUTHDR_H 1
  8. /* Used when dealing with COFF files. */
  9.  
  10. #if __cplusplus
  11. extern "C" {
  12. #endif
  13.  
  14. typedef    struct aouthdr
  15. {
  16.   short    magic;        /* Magic number -- usually set to 0x10B (0413). */
  17.   short    vstamp;        /* Version stamp. */
  18.   long tsize;        /* Text size. */
  19.   long dsize;        /* Initialized data size. */
  20.   long bsize;        /* Uninitialized data size. */
  21.   long entry;        /* Entry point. */
  22.   long text_start;    /* Base address of text. */
  23.   long data_start;    /* Base address of data. */
  24. } AOUTHDR;
  25.  
  26. #if __cplusplus
  27. }
  28. #endif
  29.  
  30. #endif
  31.