home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Misc / DC-POS24.LZX / pOS / pOSxA.lzx / pOSxA / exec / interrupts.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-03-12  |  733 b   |  40 lines

  1. #ifndef    EXEC_INTERRUPTS_H
  2. #define    EXEC_INTERRUPTS_H
  3.  
  4. /*******************************************************************
  5.  pOS / Amiga adapt
  6. *******************************************************************/
  7.  
  8. #ifndef EXEC_TYPES_H
  9. #include <exec/types.h>
  10. #endif
  11. #ifndef __INC_POS_PEXEC_INTERUPT_H
  12. #include <p:pExec/Interupt.h>
  13. #endif
  14. #ifndef EXEC_NODES_H
  15. #include "exec/nodes.h"
  16. #endif
  17. #ifndef EXEC_LISTS_H
  18. #include "exec/lists.h"
  19. #endif
  20.  
  21.  
  22. struct Interrupt
  23. {
  24.   struct Node is_Node;
  25.   APTR        is_Data;
  26.   ULONG       is_UserData;
  27.   VOID      (*is_Code)();
  28. };
  29.  
  30.  
  31. #ifdef __IGNORE_NOT_SUPPORTED__
  32.  #define SIH_PRIMASK 0
  33.  #define INTB_NMI 0
  34.  #define INTF_NMI 0
  35. #endif /** __IGNORE_NOT_SUPPORTED__ **/
  36.  
  37.  
  38.  
  39. #endif    /* EXEC_INTERRUPTS_H */
  40.