home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / E / TFF-A32R.LZX / AmigaE3.2a / ModulesSrc / exec / ports.e < prev    next >
Encoding:
Text File  |  1996-08-29  |  372 b   |  27 lines

  1. OPT MODULE
  2. OPT EXPORT
  3.  
  4. MODULE 'exec/lists',
  5.        'exec/nodes'
  6.  
  7. OBJECT mp
  8.   ln:ln
  9.   flags:CHAR
  10.   sigbit:CHAR
  11.   sigtask:LONG
  12.   msglist:lh
  13. ENDOBJECT     /* SIZEOF=34 */
  14.  
  15. CONST MP_SOFTINT=16,
  16.       PF_ACTION=3,
  17.       PA_SIGNAL=0,
  18.       PA_SOFTINT=1,
  19.       PA_IGNORE=2
  20.  
  21. OBJECT mn
  22.   ln:ln
  23.   replyport:PTR TO mp
  24.   length:INT  -> This is unsigned
  25. ENDOBJECT     /* SIZEOF=20 */
  26.  
  27.