75 lines
2.3 KiB
C
75 lines
2.3 KiB
C
/* dvdisaster: Additional error correction for optical media.
|
|
* Copyright (C) 2004-2017 Carsten Gnoerlich.
|
|
*
|
|
* Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org
|
|
* Project homepage: http://www.dvdisaster.org
|
|
*
|
|
* This file is part of dvdisaster.
|
|
*
|
|
* dvdisaster 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.
|
|
*
|
|
* dvdisaster 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 General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with dvdisaster. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef UDF_H
|
|
#define UDF_H
|
|
|
|
#include "scsi-layer.h"
|
|
|
|
/*
|
|
* Structure and functions for examining an existing .iso image
|
|
*/
|
|
|
|
typedef struct _IsoInfo
|
|
{ guint32 volumeSize;
|
|
char volumeLabel[33];
|
|
char creationDate[32];
|
|
} IsoInfo;
|
|
|
|
void FreeIsoInfo(IsoInfo*);
|
|
void ExamineUDF(Image*);
|
|
|
|
/*
|
|
* Structure and functions for creating an .iso image
|
|
*/
|
|
|
|
typedef struct _IsoDir
|
|
{ unsigned char *dir; /* memory allocated for dir, multiples of 2048 */
|
|
int nSectors; /* number of sectors */
|
|
int tail; /* next place for inserting new entry */
|
|
} IsoDir;
|
|
|
|
typedef struct _IsoPathTable
|
|
{ unsigned char *lpath; /* memory allocated for L path table, multiples of 2048 */
|
|
unsigned char *mpath; /* memory allocated for R path table, multiples of 2048 */
|
|
int nSectors; /* number of sectors */
|
|
int tail; /* next place for inserting new entry */
|
|
} IsoPathTable;
|
|
|
|
typedef struct _IsoHeader
|
|
{ unsigned char *pvd; /* primary volume descriptor */
|
|
IsoDir *proot; /* its root directory */
|
|
IsoPathTable *ppath; /* and path table */
|
|
unsigned char *svd; /* supplementary volume descriptor */
|
|
IsoDir *sroot; /* its root directory */
|
|
IsoPathTable *spath; /* and path table */
|
|
int dirSectors;
|
|
guint64 volumeSpace;
|
|
} IsoHeader;
|
|
|
|
IsoHeader* InitIsoHeader(void);
|
|
void AddFile(IsoHeader*, char*, guint64);
|
|
void FreeIsoHeader(IsoHeader*);
|
|
void WriteIsoHeader(IsoHeader*, LargeFile*);
|
|
|
|
#endif
|