emuld.inc 999 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. $Id$
  3. This file is part of the Free Pascal run time library.
  4. emulinterface definitions for MorphOS/PowerPC
  5. Copyright (c) 2002 The MorphOS Development Team, All Rights Reserved.
  6. Free Pascal conversion
  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. { * emulinterface structures from MorphOS SDK * }
  15. type
  16. PEmulLibEntry = ^TEmulLibEntry;
  17. TEmulLibEntry = packed record
  18. Trap : Word;
  19. Extension: Word; { * MUST be set to 0 if you create it by hand * }
  20. Func : Pointer;
  21. end;
  22. {
  23. $Log$
  24. Revision 1.1 2004-07-19 18:38:22 karoly
  25. * initial revision
  26. }