utild2.inc 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. $Id$
  3. This file is part of the Free Pascal run time library.
  4. utility definitions (V50) for MorphOS/PowerPC
  5. Copyright (c) 2002 The MorphOS Development Team, All Rights Reserved.
  6. Free Pascal conversion, second part
  7. Copyright (c) 2004 Karoly Balogh for Genesi S.a.r.l. <www.genesi.lu>
  8. See the file COPYING.FPC, included in this distribution,
  9. for details about the copyright.
  10. This program is distributed in the hope that it will be useful,
  11. but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  13. **********************************************************************}
  14. { * utility.library include
  15. *********************************************************************
  16. * }
  17. const
  18. UtilityName = 'utility.library';
  19. type
  20. PUtilityBase = ^TUtilityName;
  21. TUtilityName = packed 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 = packed record
  32. h_MinNode : TMinNode;
  33. h_Entry : Cardinal;
  34. h_SubEntry: Cardinal;
  35. h_Data : Pointer;
  36. end;
  37. {
  38. $Log$
  39. Revision 1.1 2004-08-03 14:26:10 karoly
  40. * initial revision
  41. }