Files
libaaruformat/include/aaruformat/structs.h

45 lines
1.3 KiB
C
Raw Normal View History

2022-05-28 12:57:21 +01:00
/*
* This file is part of the Aaru Data Preservation Suite.
* Copyright (c) 2019-2022 Natalia Portillo.
*
* 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/>.
*/
2019-03-16 19:15:07 +00:00
2022-06-21 21:12:25 +01:00
#ifndef _MSC_VER
2019-03-16 19:15:07 +00:00
#pragma clang diagnostic push
2024-04-30 15:51:32 +01:00
#pragma ide diagnostic ignored "OCUnusedGlobalDeclarationInspection"
2022-06-21 21:12:25 +01:00
#endif
2020-03-01 19:53:05 +00:00
#ifndef LIBAARUFORMAT_STRUCTS_H
#define LIBAARUFORMAT_STRUCTS_H
2019-03-16 19:15:07 +00:00
2020-03-01 19:51:43 +00:00
#include <aaru.h>
2019-03-31 20:52:06 +01:00
#include <stdbool.h>
2022-05-28 12:13:45 +01:00
#include <stdio.h>
2019-03-31 20:52:06 +01:00
2022-05-28 12:10:04 +01:00
#include "enums.h"
#include "structs/checksum.h"
#include "structs/data.h"
#include "structs/ddt.h"
#include "structs/dump.h"
#include "structs/header.h"
#include "structs/index.h"
#include "structs/metadata.h"
#include "structs/optical.h"
2019-03-16 19:15:07 +00:00
2024-04-30 15:51:32 +01:00
#endif // LIBAARUFORMAT_STRUCTS_H
2019-03-16 19:15:07 +00:00
2022-06-21 21:12:25 +01:00
#ifndef _MSC_VER
#pragma clang diagnostic pop
#endif