mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2025-12-20 17:30:02 +01:00
Reduce #ifdef cluttering in os/utils.c a little bit my moving the (built-time-) conditional printing of the help message into serverlock.c Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net> Part-of: <https://gitlab.freedesktop.org/xorg/xserver/-/merge_requests/1320>
13 lines
321 B
C
13 lines
321 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);
|
|
void DisableServerLock(void);
|
|
void LockServerUseMsg(void);
|
|
|
|
#endif /* _XSERVER_SERVERLOCK_H */
|