mirror of
https://github.com/aaru-dps/fstester.git
synced 2025-12-16 19:24:39 +00:00
1 line
100 KiB
C
1 line
100 KiB
C
|
|
/****************************************************************************
The Disc Image Chef
-----------------------------------------------------------------------------
Filename : macos.h
Author(s) : Natalia Portillo
Component : fstester.setter
--[ Description ] -----------------------------------------------------------
Contains Mac OS definitions
--[ License ] ---------------------------------------------------------------
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warraty of
MERCHANTIBILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
-----------------------------------------------------------------------------
Copyright (C) 2011-2018 Natalia Portillo
*****************************************************************************/
#if defined(macintosh)
#ifndef DIC_FSTESTER_SETTER_MACINTOSH_H
#define DIC_FSTESTER_SETTER_MACINTOSH_H
#include <MacTypes.h>
const char *noAttributeText = "This file has all flags bits clear.\r";
const char *desktopText = "This file is on desktop.\r";
const char *color2Text = "This file is colored brown.\r";
const char *color4Text = "This file is colored green.\r";
const char *color6Text = "This file is colored lilac.\r";
const char *color8Text = "This file is colored blue.\r";
const char *colorAText = "This file is colored magenta.\r";
const char *colorCText = "This file is colored red.\r";
const char *colorEText = "This file is colored orange.\r";
const char *requireSwitchText = "This file requires switch launch.\r";
const char *sharedText = "This file is shared.\r";
const char *noInitText = "This file contains no init.\r";
const char *initedText = "This file has been inited.\r";
const char *aoceText = "This file has AOCE bit set.\r";
const char *customIconText = "This file has a custom icon.\r";
const char *stationeryText = "This is a stationery.\r";
const char *nameLockText = "This file has the name locked.\r";
const char *bundleText = "This file has a BNDL resource.\r";
const char *invisibleText = "This file is invisible.\r";
const char *aliasText = "This file is an alias to nowhere.\r";
const char *simpletextText = "This file has creator 'ttxt'.\r";
const char *dicText = "This file has creator 'dic '.\r";
const char *pos_m32_m32 = "This file position is -32k,-32k.\r";
const char *pos_32_32 = "This file position is 32k,32k.\r";
const char *pos_m1_m1 = "This file position is -1k,-1k.\r";
const char *pos_m1_m32 = "This file position is -1k,-32k.\r";
const char *pos_m1_32 = "This file position is -1k,32k.\r";
const char *pos_m1_1 = "This file position is -1k,1k.\r";
const char *pos_1_m1 = "This file position is 1k,-1k.\r";
const char *pos_1_m32 = "This file position is 1k,-32k.\r";
const char *pos_1_32 = "This file position is 1k,32k.\r";
const char *pos_1_1 = "This file position is 1k,1k.\r";
const char *allText = "This file has all flags bits set.\r";
const char *targetText = "This file is the target of an alias.\r";
const char *icnsText = "This file has a custom icon in the resource fork.\r";
const char *versText = "This file has a version in the resource fork.\r";
const char *pictText = "This file has a picture in the resource fork.\r";
const char *rsrcText = "This file has a custom icon, a version, and a picture, in the resource fork.\r";
enum
{
gestaltMacOSCompatibilityBoxAttr = FOUR_CHAR_CODE('bbox'),
ostDiscImageChef = FOUR_CHAR_CODE('dic '),
ostSimpleText = FOUR_CHAR_CODE('ttxt'),
ostUnknown = FOUR_CHAR_CODE('????'),
rtIcons = FOUR_CHAR_COD
|