Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
13 lines (10 sloc)
362 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* ### | |
* 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... | |
} |