dxetype.pp 885 B

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