// Copyright (C) 2020 Jérôme Leclercq // This file is part of the "Nazara Engine - Platform module" // For conditions of distribution and use, see copyright notice in Config.hpp #pragma once #ifndef NAZARA_WINDOWHANDLE_HPP #define NAZARA_WINDOWHANDLE_HPP #include #include namespace Nz { enum class WindowManager { Invalid, X11, Wayland, Windows }; struct WindowHandle { WindowManager type = WindowManager::Invalid; union { struct { void* display; //< Display* unsigned long window; //< Window } x11; struct { void* display; //< wl_display* void* surface; //< wl_surface* void* shellSurface; //< wl_shell_surface* } wayland; struct { void* window; //< HWND } windows; }; }; } #endif // NAZARA_WINDOWHANDLE_HPP