utild2.inc 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. This file is part of the Free Pascal run time library.
  3. utility definitions (V50) for MorphOS/PowerPC
  4. Copyright (c) 2002 The MorphOS Development Team, All Rights Reserved.
  5. Free Pascal conversion, second part
  6. Copyright (c) 2004 Karoly Balogh for Genesi S.a.r.l. <www.genesi.lu>
  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. { * utility.library include
  14. *********************************************************************
  15. * }
  16. {$PACKRECORDS 2}
  17. const
  18. UtilityName = 'utility.library';
  19. type
  20. PUtilityBase = ^TUtilityName;
  21. TUtilityName = record
  22. ub_LibNode : TLibrary;
  23. ub_Language: Byte;
  24. ub_Reserved: Byte;
  25. end;
  26. { * utility.library hook defines
  27. *********************************************************************
  28. * }
  29. type
  30. PHook = ^THook;
  31. THook = record
  32. h_MinNode : TMinNode;
  33. h_Entry : Cardinal;
  34. h_SubEntry: Cardinal;
  35. h_Data : Pointer;
  36. end;