setjumph.inc 814 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. $Id$
  3. This file is part of the Free Pascal run time library.
  4. Copyright (c) 1998 the Free Pascal development team
  5. SetJmp/Longjmp declarations
  6. See the file COPYING.FPC, included in this distribution,
  7. for details about the copyright.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  11. **********************************************************************}
  12. Type
  13. jmp_buf = record
  14. ebx,esi,edi : Longint;
  15. bp,sp,pc : Pointer;
  16. end;
  17. PJmp_buf = ^jmp_buf;
  18. Function Setjmp (Var S : Jmp_buf) : longint;
  19. Procedure longjmp (Var S : Jmp_buf; value : longint);
  20. {
  21. $Log$
  22. Revision 1.2 2000-07-13 11:33:42 michael
  23. + removed logs
  24. }