home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 5 / FreshFish_July-August1994.bin / bbs / dev / amiga_e-2.1b.lha / Amiga_E-2.1b / Modules-Text / dos / notify.txt < prev    next >
Encoding:
Text File  |  1992-09-02  |  838 b   |  37 lines

  1. ShowModule v0.1 (c) 1992 $#%!
  2. now showing: "emodules:dos/notify.m"
  3. NOTE: don't use this output in your code, use the module instead.
  4.  
  5. CONST NOTIFY_CLASS=$40000000,
  6.       NOTIFY_CODE=$1234
  7.  
  8. (---) OBJECT notifymessage
  9. (  0)   execmessage:substructure
  10. ( 20)   class:LONG
  11. ( 24)   code:INT
  12. ( 26)   nreq:LONG
  13. ( 30)   donottouch:LONG
  14. ( 34)   donottouch2:LONG
  15. (---) ENDOBJECT     /* SIZEOF=38 */
  16.  
  17. (---) OBJECT notifyrequest
  18. (  0)   name:LONG
  19. (  4)   fullname:LONG
  20. (  8)   userdata:LONG
  21. ( 12)   flags:LONG
  22. ( 16)   port:LONG
  23. ( 20)   signalnum:CHAR
  24. ( 21)   pad:substructure
  25. ( 24)   reserved:substructure
  26. ( 40)   msgcount:LONG
  27. ( 44)   handler:LONG
  28. (---) ENDOBJECT     /* SIZEOF=48 */
  29.  
  30. CONST NRF_SEND_MESSAGE=1,
  31.       NRF_SEND_SIGNAL=2,
  32.       NRF_WAIT_REPLY=8,
  33.       NRF_NOTIFY_INITIAL=16,
  34.       NRF_MAGIC=$80000000,
  35.       NR_HANDLER_FLAGS=$FFFF0000
  36.  
  37.