home *** CD-ROM | disk | FTP | other *** search
/ PC Extra Super CD 1998 January / PCPLUS131.iso / DJGPP / V2MISC / CSDPMI3S.ZIP / SRC / CWSDPMI / IDT.H < prev    next >
Encoding:
C/C++ Source or Header  |  1996-06-15  |  968 b   |  26 lines

  1. /* Copyright (C) 1995,1996 CW Sandmann (sandmann@clio.rice.edu) 1206 Braelinn, Sugarland, TX 77479
  2. ** Copyright (C) 1993 DJ Delorie, 24 Kirsten Ave, Rochester NH 03867-2954
  3. **
  4. ** This file is distributed under the terms listed in the document
  5. ** "copying.cws", available from CW Sandmann at the address above.
  6. ** A copy of "copying.cws" should accompany this file; if not, a copy
  7. ** should be available from where this file was obtained.  This file
  8. ** may not be distributed without a verbatim copy of "copying.cws".
  9. **
  10. ** This file is distributed WITHOUT ANY WARRANTY; without even the implied
  11. ** warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  12. */
  13.  
  14. typedef struct IDT_S {
  15.   word16 offset0;
  16.   word16 selector;
  17.   word16 stype;
  18.   word16 offset1;
  19. } IDT;
  20.  
  21. extern IDT idt[256];
  22.  
  23. /* Routines in tables.asm */
  24. extern void far ivec0(void), ivec1(void), ivec7(void), ivec31(void);
  25. extern void interrupt_common(void), page_fault(void);
  26.