NekoWM
A gfxprim proxy backend tiling window manager
Loading...
Searching...
No Matches
neko_view_exit.h
1//SPDX-License-Identifier: GPL-2.0-or-later
2/*
3
4 Copyright (c) 2019-2025 Cyril Hrubis <metan@ucw.cz>
5
6 */
7
8#ifndef NEKO_VIEW_APPS_EXIT_H
9#define NEKO_VIEW_APPS_EXIT_H
10
14void neko_view_exit_app_disconnected(void);
15
21void neko_view_exit_app_connected(gp_proxy_cli *cli);
22
23enum neko_view_exit_type {
24 NEKO_VIEW_EXIT_QUIT = 0x0f,
25 NEKO_VIEW_EXIT_POWEROFF = 0xf0,
26};
27
40neko_view_slot *neko_view_exit_init(enum neko_view_exit_type exit_type);
41
42#endif /* NEKO_VIEW_APPS_EXIT_H */
A view slot content.
Definition neko_view.h:89