diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/caja-self-check-functions.h | 6 | ||||
-rw-r--r-- | src/file-manager/caja-audio-mime-types.h | 6 |
2 files changed, 12 insertions, 0 deletions
diff --git a/src/caja-self-check-functions.h b/src/caja-self-check-functions.h index 398999bf..ec503943 100644 --- a/src/caja-self-check-functions.h +++ b/src/caja-self-check-functions.h @@ -27,6 +27,9 @@ */ +#ifndef __CAJA_SELF_CHECK_FUNCTIONS_H__ +#define __CAJA_SELF_CHECK_FUNCTIONS_H__ + void caja_run_self_checks (void); /* Putting the prototypes for these self-check functions in each @@ -45,3 +48,6 @@ void caja_run_self_checks (void); /* Generate prototypes for all the functions. */ CAJA_FOR_EACH_SELF_CHECK_FUNCTION (CAJA_SELF_CHECK_FUNCTION_PROTOTYPE) + +#endif /* __CAJA_SELF_CHECK_FUNCTIONS_H__ */ + diff --git a/src/file-manager/caja-audio-mime-types.h b/src/file-manager/caja-audio-mime-types.h index 7b3d516c..998fc4ba 100644 --- a/src/file-manager/caja-audio-mime-types.h +++ b/src/file-manager/caja-audio-mime-types.h @@ -1,4 +1,7 @@ /* See https://gstreamer.freedesktop.org/documentation/plugin-development/advanced/media-types.html?gi-language=c#table-of-audio-types */ +#ifndef __CAJA_AUDIO_MIME_TYPES_H__ +#define __CAJA_AUDIO_MIME_TYPES_H__ + static const char* audio_mime_types[] = { "audio/3gpp", @@ -43,3 +46,6 @@ static const char* audio_mime_types[] = "audio/x-xm", "application/x-flac", }; + +#endif /* __CAJA_AUDIO_MIME_TYPES_H__ */ + |