home *** CD-ROM | disk | FTP | other *** search
/ Dream 57 / Amiga_Dream_57.iso / Amiga / Programmation / Assembleur / ESA.lha / ESA / examples / sss / defs.i < prev    next >
Text File  |  1998-10-30  |  1KB  |  46 lines

  1. *******************************************************************************
  2. * defs v1.2.1
  3. *******************************************************************************
  4.  
  5. *******************************************************************************
  6. * exec_lib
  7.  
  8. _LVOAllocMem    =    -198
  9. _LVOFreeMem    =    -210
  10. _LVOAvailMem    =    -216
  11. _LVOCloseLibrary =    -414
  12. _LVOOpenLibrary    =    -552
  13.  
  14. *******************************************************************************
  15. * dos_lib
  16.  
  17. _LVOOpen    =    -30
  18. _LVOClose    =    -36
  19. _LVORead    =    -42
  20. _LVOWrite    =    -48
  21. _LVOOutPut    =    -60
  22. _LVOExamineFH    =    -390
  23.  
  24. *******************************************************************************
  25. * misc OS constants
  26.  
  27. fib_Size    =    124
  28. MODE_OLDFILE    =    1005
  29. MODE_NEWFILE    =    1006
  30. MEMF_LARGEST    =    1<<17
  31.  
  32. *******************************************************************************
  33. * internal
  34.  
  35. MAXCHNKSNMB    =    10000
  36.  
  37. F_QUIETMODE    =    0    ;0=OFF; 1=ON
  38. F_SOUFILEFND    =    1    ;0=not found; 1=found
  39. F_DSTBASEFND    =    2    ;0=not found; 1=found
  40.  
  41. E_LOWMEM    =    1    ;low memory
  42. E_SOUFLE    =    2    ;can't open input file
  43. E_CHNKSZ    =    3    ;wrong chunk size
  44. E_DSTFLE    =    4    ;can't write to output file
  45. E_CHNKNB    =    5    ;max 10000 chunks
  46.