Current News Archived News Search News Discussion Forum Old Forum Install Programs More Downloads... Troubleshooting Source Code Format Specs. Misc. Information Non-SF Stuff Links Small banner for links to this site: |
diff --git a/SFmpqapi.bas b/SFmpqapi.bas
--- a/SFmpqapi.bas
+++ b/SFmpqapi.bas
' MpqAddFileToArchiveEx compression flags\r
Public Const MAFA_COMPRESS_STANDARD As Long = &H8 'Standard PKWare DCL compression\r
Public Const MAFA_COMPRESS_DEFLATE As Long = &H2 'ZLib's deflate compression\r
-Public Const MAFA_COMPRESS_WAVE As Long = &H81 'Standard wave compression\r
-Public Const MAFA_COMPRESS_WAVE2 As Long = &H41 'Unused wave compression\r
+Public Const MAFA_COMPRESS_BZIP2 As Long = &H10 'bzip2 compression\r
+Public Const MAFA_COMPRESS_WAVE As Long = &H81 'Stereo wave compression\r
+Public Const MAFA_COMPRESS_WAVE2 As Long = &H41 'Mono wave compression\r
\r
' Flags for individual compression types used for wave compression\r
-Public Const MAFA_COMPRESS_WAVECOMP1 As Long = &H80 'Main compressor for standard wave compression\r
-Public Const MAFA_COMPRESS_WAVECOMP2 As Long = &H40 'Main compressor for unused wave compression\r
+Public Const MAFA_COMPRESS_WAVECOMP1 As Long = &H80 'Main compressor for stereo wave compression\r
+Public Const MAFA_COMPRESS_WAVECOMP2 As Long = &H40 'Main compressor for mono wave compression\r
Public Const MAFA_COMPRESS_WAVECOMP3 As Long = &H1 'Secondary compressor for wave compression\r
\r
' ZLib deflate compression level constants (used with MpqAddFileToArchiveEx and MpqAddFileFromBufferEx)\r
|