mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2025-12-20 08:10:03 +01:00
12 lines
262 B
C
12 lines
262 B
C
|
|
/* SPDX-License-Identifier: MIT OR X11
|
||
|
|
*
|
||
|
|
* Copyright © 2024 Enrico Weigelt, metux IT consult <info@metux.net>
|
||
|
|
*/
|
||
|
|
#ifndef _XSERVER_SERVERLOCK_H
|
||
|
|
#define _XSERVER_SERVERLOCK_H
|
||
|
|
|
||
|
|
void LockServer(void);
|
||
|
|
void UnlockServer(void);
|
||
|
|
|
||
|
|
#endif /* _XSERVER_SERVERLOCK_H */
|