From 5f3a14d3f6ccd74ac4bfb4736861f7fd9937eeb6 Mon Sep 17 00:00:00 2001 From: dec05eba Date: Wed, 5 Mar 2025 18:07:52 +0100 Subject: Rename window_wayland to wayland and window_x11 to x11 --- include/window/wayland.h | 8 ++++++++ include/window/window_wayland.h | 8 -------- include/window/window_x11.h | 10 ---------- include/window/x11.h | 10 ++++++++++ 4 files changed, 18 insertions(+), 18 deletions(-) create mode 100644 include/window/wayland.h delete mode 100644 include/window/window_wayland.h delete mode 100644 include/window/window_x11.h create mode 100644 include/window/x11.h (limited to 'include/window') diff --git a/include/window/wayland.h b/include/window/wayland.h new file mode 100644 index 0000000..3535b0f --- /dev/null +++ b/include/window/wayland.h @@ -0,0 +1,8 @@ +#ifndef GSR_WINDOW_WAYLAND_H +#define GSR_WINDOW_WAYLAND_H + +#include "window.h" + +gsr_window* gsr_window_wayland_create(void); + +#endif /* GSR_WINDOW_WAYLAND_H */ diff --git a/include/window/window_wayland.h b/include/window/window_wayland.h deleted file mode 100644 index 3535b0f..0000000 --- a/include/window/window_wayland.h +++ /dev/null @@ -1,8 +0,0 @@ -#ifndef GSR_WINDOW_WAYLAND_H -#define GSR_WINDOW_WAYLAND_H - -#include "window.h" - -gsr_window* gsr_window_wayland_create(void); - -#endif /* GSR_WINDOW_WAYLAND_H */ diff --git a/include/window/window_x11.h b/include/window/window_x11.h deleted file mode 100644 index e0c2948..0000000 --- a/include/window/window_x11.h +++ /dev/null @@ -1,10 +0,0 @@ -#ifndef GSR_WINDOW_X11_H -#define GSR_WINDOW_X11_H - -#include "window.h" - -typedef struct _XDisplay Display; - -gsr_window* gsr_window_x11_create(Display *display); - -#endif /* GSR_WINDOW_X11_H */ diff --git a/include/window/x11.h b/include/window/x11.h new file mode 100644 index 0000000..e0c2948 --- /dev/null +++ b/include/window/x11.h @@ -0,0 +1,10 @@ +#ifndef GSR_WINDOW_X11_H +#define GSR_WINDOW_X11_H + +#include "window.h" + +typedef struct _XDisplay Display; + +gsr_window* gsr_window_x11_create(Display *display); + +#endif /* GSR_WINDOW_X11_H */ -- cgit v1.2.3-70-g09d2