Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ add_library(dfdutils OBJECT
colourspaces.c
dfd.h
interpretdfd.c
KHR/khr_df.h
printdfd.c
queries.c
vk2dfd.c
Expand Down Expand Up @@ -156,4 +157,4 @@ if(DOXYGEN_FOUND)
)
else()
message(WARNING "Doxygen not found. 'doc' target will not be available.")
endif()
endif()
4 changes: 2 additions & 2 deletions KHR/khr_df.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@

/* We stick to standard C89 constructs for simplicity and portability. */

#ifndef _KHR_DATA_FORMAT_H_
#define _KHR_DATA_FORMAT_H_
#ifndef KHR_DATA_FORMAT_H_
#define KHR_DATA_FORMAT_H_

/* Accessors */
typedef enum _khr_word_e {
Expand Down
6 changes: 3 additions & 3 deletions dfd.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
* Author: Andrew Garrard
*/

#ifndef _DFD_H_
#define _DFD_H_
#ifndef DFD_H_
#define DFD_H_

#include <KHR/khr_df.h>
#include <stdbool.h>
Expand Down Expand Up @@ -233,4 +233,4 @@ bool getPrimaries(khr_df_primaries_e primaries, Primaries *p);
}
#endif

#endif /* _DFD_H_ */
#endif /* DFD_H_ */