mirror of
https://github.com/aaru-dps/libaaruformat.git
synced 2025-12-16 19:24:40 +00:00
Read data blocks, except for media tags.
This commit is contained in:
@@ -1,7 +1,34 @@
|
||||
// /***************************************************************************
|
||||
// The Disc Image Chef
|
||||
// ----------------------------------------------------------------------------
|
||||
//
|
||||
// Created by claunia on 17/03/19.
|
||||
// Filename : context.h
|
||||
// Author(s) : Natalia Portillo <claunia@claunia.com>
|
||||
//
|
||||
|
||||
// Component : libdicformat.
|
||||
//
|
||||
// --[ Description ] ----------------------------------------------------------
|
||||
//
|
||||
// Describes context to be passed between libdicformat functions.
|
||||
//
|
||||
// --[ 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/>.
|
||||
//
|
||||
// ----------------------------------------------------------------------------
|
||||
// Copyright © 2011-2019 Natalia Portillo
|
||||
// ****************************************************************************/
|
||||
#ifndef LIBDICFORMAT_CONTEXT_H
|
||||
#define LIBDICFORMAT_CONTEXT_H
|
||||
|
||||
@@ -17,6 +44,12 @@ typedef struct dicformatContext
|
||||
DicHeader header;
|
||||
struct dataLinkedList *mediaTagsHead;
|
||||
struct dataLinkedList *mediaTagsTail;
|
||||
unsigned char *sectorPrefix;
|
||||
unsigned char *sectorPrefixCorrected;
|
||||
unsigned char *sectorSuffix;
|
||||
unsigned char *sectorSuffixCorrected;
|
||||
unsigned char *sectorSubchannel;
|
||||
unsigned char *mode2Subheaders;
|
||||
} dicformatContext;
|
||||
|
||||
typedef struct dataLinkedList
|
||||
|
||||
Reference in New Issue
Block a user