home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 5 / FreshFish_July-August1994.bin / useful / dist / dev / e / amiga_e / modules-text / exec / io.txt < prev    next >
Text File  |  1992-09-02  |  769b  |  39 lines

  1. ShowModule v0.1 (c) 1992 $#%!
  2. now showing: "emodules:exec/io.m"
  3. NOTE: don't use this output in your code, use the module instead.
  4.  
  5. (---) OBJECT io
  6. (  0)   mn:substructure
  7. ( 20)   device:LONG
  8. ( 24)   unit:LONG
  9. ( 28)   command:INT
  10. ( 30)   flags:CHAR
  11. ( 31)   error:CHAR
  12. (---) ENDOBJECT     /* SIZEOF=32 */
  13.  
  14. (---) OBJECT iostd
  15. (  0)   mn:substructure
  16. ( 20)   device:LONG
  17. ( 24)   unit:LONG
  18. ( 28)   command:INT
  19. ( 30)   flags:CHAR
  20. ( 31)   error:CHAR
  21. ( 32)   actual:LONG
  22. ( 36)   length:LONG
  23. ( 40)   data:LONG
  24. ( 44)   offset:LONG
  25. (---) ENDOBJECT     /* SIZEOF=48 */
  26.  
  27. CONST IOF_QUICK=1,
  28.       CMD_INVALID=0,
  29.       CMD_RESET=1,
  30.       CMD_READ=2,
  31.       CMD_WRITE=3,
  32.       CMD_UPDATE=4,
  33.       CMD_CLEAR=5,
  34.       CMD_STOP=6,
  35.       CMD_START=7,
  36.       CMD_FLUSH=8,
  37.       CMD_NONSTD=9
  38.  
  39.