diff options
author | David Robillard <d@drobilla.net> | 2022-04-21 17:33:12 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-04-21 17:33:12 -0400 |
commit | ec7a751fac40d07eba3bac1dc4d1c7f4235adc52 (patch) | |
tree | 14a63bd82322a8300634d541d6ed803621e524c9 | |
parent | 2a56aca2b1113c4dd565b6138c49ed21da9bcc7c (diff) | |
download | pugl-ec7a751fac40d07eba3bac1dc4d1c7f4235adc52.tar.gz pugl-ec7a751fac40d07eba3bac1dc4d1c7f4235adc52.tar.bz2 pugl-ec7a751fac40d07eba3bac1dc4d1c7f4235adc52.zip |
Fix private include guards
-rw-r--r-- | src/mac.h | 6 | ||||
-rw-r--r-- | src/stub.h | 6 | ||||
-rw-r--r-- | src/types.h | 6 | ||||
-rw-r--r-- | src/win.h | 6 | ||||
-rw-r--r-- | src/x11.h | 6 |
5 files changed, 15 insertions, 15 deletions
@@ -2,8 +2,8 @@ // Copyright 2017 Hanspeter Portner <dev@open-music-kontrollers.ch> // SPDX-License-Identifier: ISC -#ifndef PUGL_DETAIL_MAC_H -#define PUGL_DETAIL_MAC_H +#ifndef PUGL_SRC_MAC_H +#define PUGL_SRC_MAC_H #include "pugl/pugl.h" @@ -39,4 +39,4 @@ struct PuglInternalsImpl { bool mouseTracked; }; -#endif // PUGL_DETAIL_MAC_H +#endif // PUGL_SRC_MAC_H @@ -1,8 +1,8 @@ // Copyright 2012-2021 David Robillard <d@drobilla.net> // SPDX-License-Identifier: ISC -#ifndef PUGL_DETAIL_STUB_H -#define PUGL_DETAIL_STUB_H +#ifndef PUGL_SRC_STUB_H +#define PUGL_SRC_STUB_H #include "pugl/pugl.h" @@ -56,4 +56,4 @@ puglStubGetContext(PuglView* const view) PUGL_END_DECLS -#endif // PUGL_DETAIL_STUB_H +#endif // PUGL_SRC_STUB_H diff --git a/src/types.h b/src/types.h index 84e8a17..aa17b7f 100644 --- a/src/types.h +++ b/src/types.h @@ -1,8 +1,8 @@ // Copyright 2012-2020 David Robillard <d@drobilla.net> // SPDX-License-Identifier: ISC -#ifndef PUGL_DETAIL_TYPES_H -#define PUGL_DETAIL_TYPES_H +#ifndef PUGL_SRC_TYPES_H +#define PUGL_SRC_TYPES_H #include "pugl/pugl.h" @@ -95,4 +95,4 @@ struct PuglBackendImpl { void* (*getContext)(PuglView*); }; -#endif // PUGL_DETAIL_TYPES_H +#endif // PUGL_SRC_TYPES_H @@ -1,8 +1,8 @@ // Copyright 2012-2021 David Robillard <d@drobilla.net> // SPDX-License-Identifier: ISC -#ifndef PUGL_DETAIL_WIN_H -#define PUGL_DETAIL_WIN_H +#ifndef PUGL_SRC_WIN_H +#define PUGL_SRC_WIN_H #include "implementation.h" @@ -52,4 +52,4 @@ PUGL_API PuglStatus puglWinLeave(PuglView* view, const PuglExposeEvent* expose); -#endif // PUGL_DETAIL_WIN_H +#endif // PUGL_SRC_WIN_H @@ -1,8 +1,8 @@ // Copyright 2012-2021 David Robillard <d@drobilla.net> // SPDX-License-Identifier: ISC -#ifndef PUGL_DETAIL_X11_H -#define PUGL_DETAIL_X11_H +#ifndef PUGL_SRC_X11_H +#define PUGL_SRC_X11_H #include "types.h" @@ -64,4 +64,4 @@ PUGL_API PuglStatus puglX11Configure(PuglView* view); -#endif // PUGL_DETAIL_X11_H +#endif // PUGL_SRC_X11_H |