utild2.inc 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. const
  17. UtilityName = 'utility.library';
  18. type
  19. PUtilityBase = ^TUtilityName;
  20. TUtilityName = packed record
  21. ub_LibNode : TLibrary;
  22. ub_Language: Byte;
  23. ub_Reserved: Byte;
  24. end;
  25. { * utility.library hook defines
  26. *********************************************************************
  27. * }
  28. type
  29. PHook = ^THook;
  30. THook = packed record
  31. h_MinNode : TMinNode;
  32. h_Entry : Cardinal;
  33. h_SubEntry: Cardinal;
  34. h_Data : Pointer;
  35. end;