mirror of
https://github.com/X11Libre/xserver.git
synced 2026-04-14 17:18:09 +00:00
21 lines
425 B
C
21 lines
425 B
C
/* SPDX-License-Identifier: MIT OR X11
|
|
*
|
|
* Copyright © 2024 Enrico Weigelt, metux IT consult <info@metux.net>
|
|
*/
|
|
#ifndef _XSERVER_DIX_SAVESET_PRIV_H
|
|
#define _XSERVER_DIX_SAVESET_PRIV_H
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include "include/list.h"
|
|
#include "include/window.h"
|
|
|
|
typedef struct {
|
|
struct xorg_list entry;
|
|
WindowPtr windowPtr;
|
|
bool toRoot;
|
|
bool map;
|
|
} SaveSetEntry;
|
|
|
|
#endif /*_XSERVER_DIX_SAVESET_PRIV_H */
|