Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Last modification | View Log | Download | RSS feed

  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. #ifdef __cplusplus
  17. extern "C" {
  18. #endif
  19.  
  20. void *_dxe_load(char *filename);
  21.  
  22. #ifdef __cplusplus
  23. }
  24. #endif
  25.