Rename headers.

This commit is contained in:
2020-03-01 19:51:43 +00:00
parent 1b2a7cf35e
commit 9075ab8bd6
5 changed files with 3 additions and 3 deletions

View File

@@ -4,7 +4,7 @@ project(libaaruformat C)
set(CMAKE_C_STANDARD 90)
add_compile_definitions(__STDC_FORMAT_MACROS=1)
add_library(aaruformat SHARED include/aaruformat/consts.h include/aaruformat/enums.h include/dic.h include/aaruformat.h
add_library(aaruformat SHARED include/aaruformat/consts.h include/aaruformat/enums.h include/aaru.h include/aaruformat.h
include/aaruformat/decls.h include/aaruformat/structs.h src/identify.c src/open.c include/aaruformat/context.h
src/close.c include/aaruformat/errors.h src/read.c src/crc64.c src/cst.c src/ecc_cd.c src/helpers.c)

View File

@@ -39,7 +39,7 @@
#include "enums.h"
#include <dic.h>
#include <aaru.h>
#include <stdbool.h>
#include <stdint.h>

View File

@@ -30,8 +30,8 @@
// Copyright © 2011-2020 Natalia Portillo
// ****************************************************************************/
#include <aaru.h>
#include <aaruformat.h>
#include <dic.h>
// Converts between image data type and dic media tag type
int32_t GetMediaTagTypeForDataType(int32_t type)