xref: /haiku/src/add-ons/kernel/file_systems/udf/Recognition.h (revision 2600324b57fa31cdea1627d584d314f2a579c4a8)
1 //----------------------------------------------------------------------
2 //  This software is part of the OpenBeOS distribution and is covered
3 //  by the OpenBeOS license.
4 //
5 //  Copyright (c) 2003 Tyler Dauwalder, tyler@dauwalder.net
6 //---------------------------------------------------------------------
7 #ifndef _UDF_RECOGNITION_H
8 #define _UDF_RECOGNITION_H
9 
10 /*! \file Recognition.h
11 */
12 
13 #include "UdfStructures.h"
14 #include "UdfDebug.h"
15 
16 status_t udf_recognize(int device, off_t offset, off_t length,
17 					   uint32 blockSize, uint32 &blockShift,
18                        logical_volume_descriptor &logicalVolumeDescriptor,
19                        partition_descriptor partitionDescriptors[],
20                        uint8 &partitionDescriptorCount);
21 
22 #endif	// _UDF_RECOGNITION_H
23