Skip to content
Permalink
6800-specs-add
Switch branches/tags
Go to file
 
 
Cannot retrieve contributors at this time
13 lines (10 sloc) 362 Bytes
/* ###
* IP: Public Domain
*/
package mobiledevices.dmg.decmpfs;
public final class DecmpfsStates {
public final static int FILE_TYPE_UNKNOWN = 0;
public final static int FILE_IS_NOT_COMPRESSED = 1;
public final static int FILE_IS_COMPRESSED = 2;
public final static int FILE_IS_CONVERTING = 3; //file is converting from compressed to decompressed...
}