blob: 19de8f07c0aa31d378b8b920093c082d43f0b665 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/* -------------------------------------------
Copyright Mahrouss Logic
------------------------------------------- */
#pragma once
/// TODO: integrate compression into the shell.
/// @brief NewFS catalog is compressed.
#define kNewFSIsZip 255
/// @brief NewFS catalog has password attached to it.
#define kNewFSHasPassword 256
class ShellInterface;
|