home *** CD-ROM | disk | FTP | other *** search
-
- ; Define names for offsets into the header.
-
- Compress_ReasonCode * 4
- Compress_SrcBufferPtr * 8
- Compress_SrcLength * 12
- Compress_DestBufferPtr * 16
- Compress_DestLength * 20
- Compress_GlobalPtr * 24
- Compress_GlobalLength * 28
- Compress_Phase1Ptr * 32
- Compress_Phase1Length * 36
- Compress_Phase2Ptr * 40
- Compress_Phase2Length * 44
- Compress_SampleLength * 48
- Compress_BytesWritten * 52
- Compress_SamplePeriod * 56
- Compress_Flags * 60
- Compress_Counter * 76
- Compress_SampleType * 80
-
- ; Reason codes
-
- ALL_DONE * 0 ; Compression phase 2 complete
- SRC_EMPTY * 1 ; Src buffer request
- DEST_FULL * 2 ; Dest buffer output (phase 2 only)
- INIT_DONE * 3 ; Phase 1 complete
- NEXT_PASS * 4 ; Do phase 1 again
- SRC_ERROR * 5 ; ERROR = bad src buffer
- DEST_ERROR * 6 ; ERROR = bad dest buffer
- CLAIM_WORK * 7 ; Claim workspace
- UNKNOWN_FORMAT * 8 ; Unrecognised sample format
-
-
- END
-