dxetype.pp 777 B

1234567891011121314151617181920212223242526272829303132333435
  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. unit dxetype;
  14. interface
  15. const
  16. DXE_MAGIC = $31455844;
  17. type
  18. dxe_header = record
  19. magic,
  20. symbol_offset,
  21. element_size,
  22. nrelocs : cardinal;
  23. end;
  24. implementation
  25. end.