Files
libaaruformat/include/aaruformat.h

49 lines
1.9 KiB
C
Raw Normal View History

2019-03-16 18:38:57 +00:00
// /***************************************************************************
2020-03-01 19:50:12 +00:00
// Aaru Data Preservation Suite
2019-03-16 18:38:57 +00:00
// ----------------------------------------------------------------------------
//
2020-03-01 19:49:43 +00:00
// Filename : aaruformat.h
2019-03-16 18:38:57 +00:00
// Author(s) : Natalia Portillo <claunia@claunia.com>
//
2020-03-01 19:51:13 +00:00
// Component : libaaruformat.
2019-03-16 18:38:57 +00:00
//
// --[ Description ] ----------------------------------------------------------
//
2020-03-01 19:55:50 +00:00
// Includes all headers for Aaru format disk images.
2019-03-16 18:38:57 +00:00
//
// --[ 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-05-28 12:32:22 +01:00
// Copyright © 2011-2022 Natalia Portillo
2019-03-16 18:38:57 +00:00
// ****************************************************************************/
2020-03-01 19:53:05 +00:00
#ifndef LIBAARUFORMAT_AARUFORMAT_H
#define LIBAARUFORMAT_AARUFORMAT_H
2019-03-16 18:38:57 +00:00
2020-03-01 19:53:05 +00:00
#define LIBAARUFORMAT_MAJOR_VERSION 1
#define LIBAARUFORMAT_MINOR_VERSION 0
2020-03-01 19:51:13 +00:00
#include "aaruformat/consts.h"
#include "aaruformat/context.h"
2022-05-28 12:50:10 +01:00
#include "aaruformat/crc64.h"
2020-03-01 19:51:13 +00:00
#include "aaruformat/decls.h"
#include "aaruformat/enums.h"
#include "aaruformat/errors.h"
#include "aaruformat/structs.h"
2022-05-28 12:31:54 +01:00
#include "aaruformat/simd.h"
2019-03-16 18:38:57 +00:00
2020-03-01 19:53:05 +00:00
#endif // LIBAARUFORMAT_AARUFORMAT_H