dxetype.pp 828 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. This file is part of the Free Pascal run time library.
  3. Copyright (c) 1999-2000 by Pierre Muller,
  4. member of the Free Pascal development team.
  5. Support unit for working with DXE files for Go32V2
  6. See the file COPYING.FPC, included in this distribution,
  7. for details about the copyright.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  11. **********************************************************************
  12. }
  13. {$IFNDEF FPC_DOTTEDUNITS}
  14. unit dxetype;
  15. {$ENDIF FPC_DOTTEDUNITS}
  16. interface
  17. const
  18. DXE_MAGIC = $31455844;
  19. type
  20. dxe_header = record
  21. magic,
  22. symbol_offset,
  23. element_size,
  24. nrelocs : cardinal;
  25. end;
  26. implementation
  27. end.