mirror of
https://gitlab.freedesktop.org/wayland/wayland.git
synced 2026-03-22 05:34:12 -04:00
wayland: Be consistent about #include-guard names
We had a mix of inconsistent names, some of which were non-conformant. Standardize on all-uppercase-and-underscore naming convention. https://bugs.freedesktop.org/show_bug.cgi?id=70679
This commit is contained in:
parent
84247b7513
commit
deddea6549
4 changed files with 8 additions and 8 deletions
|
|
@ -20,8 +20,8 @@
|
||||||
* PERFORMANCE OF THIS SOFTWARE.
|
* PERFORMANCE OF THIS SOFTWARE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef _XCURSOR_H_
|
#ifndef XCURSOR_H
|
||||||
#define _XCURSOR_H_
|
#define XCURSOR_H
|
||||||
|
|
||||||
typedef int XcursorBool;
|
typedef int XcursorBool;
|
||||||
typedef unsigned int XcursorUInt;
|
typedef unsigned int XcursorUInt;
|
||||||
|
|
|
||||||
|
|
@ -20,8 +20,8 @@
|
||||||
* OF THIS SOFTWARE.
|
* OF THIS SOFTWARE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef _WAYLAND_CLIENT_H
|
#ifndef WAYLAND_CLIENT_H
|
||||||
#define _WAYLAND_CLIENT_H
|
#define WAYLAND_CLIENT_H
|
||||||
|
|
||||||
#include "wayland-util.h"
|
#include "wayland-util.h"
|
||||||
#include "wayland-version.h"
|
#include "wayland-version.h"
|
||||||
|
|
|
||||||
|
|
@ -21,8 +21,8 @@
|
||||||
* OF THIS SOFTWARE.
|
* OF THIS SOFTWARE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef _WAYLAND_EGL_H
|
#ifndef WAYLAND_EGL_H
|
||||||
#define _WAYLAND_EGL_H
|
#define WAYLAND_EGL_H
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
|
|
|
||||||
|
|
@ -20,8 +20,8 @@
|
||||||
* OF THIS SOFTWARE.
|
* OF THIS SOFTWARE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef WAYLAND_H
|
#ifndef WAYLAND_SERVER_H
|
||||||
#define WAYLAND_H
|
#define WAYLAND_SERVER_H
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue