home *** CD-ROM | disk | FTP | other *** search
/ PC Extra Super CD 1998 January / PCPLUS131.iso / DJGPP / V2 / DJDEV201.ZIP / include / sys / dxe.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-04-22  |  472 b   |  17 lines

  1. /* Copyright (C) 1995 Charles Sandmann (sandmann@clio.rice.edu)
  2.    This software may be freely distributed with above copyright, no warranty.
  3.    Based on code by DJ Delorie, it's really his, enhanced, bugs fixed. */
  4.  
  5. typedef struct {
  6.   long magic;
  7.   long symbol_offset;
  8.   long element_size;
  9.   long nrelocs;
  10. } dxe_header;
  11.  
  12. #define DXE_MAGIC 0x31455844
  13.  
  14. /* data stored after dxe_header in file; then relocs, 4 bytes each */
  15.  
  16. void *_dxe_load(char *filename);
  17.