Files
Aaru/Aaru.Filesystems/AppleMFS/Consts.cs

51 lines
1.9 KiB
C#
Raw Normal View History

2017-05-19 20:28:49 +01:00
// /***************************************************************************
2020-02-27 12:31:25 +00:00
// Aaru Data Preservation Suite
// ----------------------------------------------------------------------------
//
// Filename : Consts.cs
// Author(s) : Natalia Portillo <claunia@claunia.com>
//
// Component : Apple Macintosh File System plugin.
//
// --[ Description ] ----------------------------------------------------------
//
2016-08-01 00:43:31 +01:00
// Apple Macintosh File System constants.
//
// --[ License ] --------------------------------------------------------------
//
// This library is free software; you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as
// published by the Free Software Foundation; either version 2.1 of the
// License, or (at your option) any later version.
//
// This library is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, see <http://www.gnu.org/licenses/>.
//
// ----------------------------------------------------------------------------
2022-02-18 10:02:53 +00:00
// Copyright © 2011-2022 Natalia Portillo
// ****************************************************************************/
2022-03-06 13:29:38 +00:00
namespace Aaru.Filesystems;
2022-03-07 07:36:44 +00:00
using System.Diagnostics.CodeAnalysis;
2022-03-06 13:29:38 +00:00
// Information from Inside Macintosh Volume II
[SuppressMessage("ReSharper", "UnusedMember.Local")]
public sealed partial class AppleMFS
{
2022-03-06 13:29:38 +00:00
const ushort MFS_MAGIC = 0xD2D7;
2016-08-01 01:22:40 +01:00
2022-03-06 13:29:38 +00:00
const short DIRID_TRASH = -3;
const short DIRID_DESKTOP = -2;
const short DIRID_TEMPLATE = -1;
const short DIRID_ROOT = 0;
2022-03-06 13:29:38 +00:00
const int BMAP_FREE = 0;
const int BMAP_LAST = 1;
const int BMAP_DIR = 0xFFF;
2017-12-19 20:33:03 +00:00
}