home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 4 / DATAFILE_PDCD4.iso / utilities / utilsc / computils / !CompUtils / Resources / Compress / asm / h / Universal < prev   
Encoding:
Text File  |  1996-04-01  |  911 b   |  36 lines

  1.  
  2. ; Define names for offsets into the header.
  3.  
  4. Compress_ReasonCode    *    4
  5. Compress_SrcBufferPtr    *    8
  6. Compress_SrcLength    *    12
  7. Compress_DestBufferPtr    *    16
  8. Compress_DestLength    *    20
  9. Compress_GlobalPtr    *    24
  10. Compress_GlobalLength    *    28
  11. Compress_Phase1Ptr    *    32
  12. Compress_Phase1Length    *    36
  13. Compress_Phase2Ptr    *    40
  14. Compress_Phase2Length    *    44
  15. Compress_SampleLength    *    48
  16. Compress_BytesWritten    *    52
  17. Compress_SamplePeriod    *    56
  18. Compress_Flags        *    60
  19. Compress_Counter    *    76
  20. Compress_SampleType    *    80
  21.  
  22. ; Reason codes
  23.  
  24. ALL_DONE        *       0   ; Compression phase 2 complete
  25. SRC_EMPTY       *       1   ; Src buffer request
  26. DEST_FULL       *       2   ; Dest buffer output (phase 2 only)
  27. INIT_DONE       *       3   ; Phase 1 complete
  28. NEXT_PASS    *    4   ; Do phase 1 again
  29. SRC_ERROR      *       5   ; ERROR = bad src buffer
  30. DEST_ERROR      *       6   ; ERROR = bad dest buffer
  31. CLAIM_WORK    *    7   ; Claim workspace
  32. UNKNOWN_FORMAT    *       8   ; Unrecognised sample format
  33.  
  34.  
  35.     END
  36.