mirror of
https://github.com/labwc/labwc.git
synced 2025-10-29 05:40:24 -04:00
13 lines
339 B
C
13 lines
339 B
C
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
||
|
|
#ifndef LABWC_OUTPUT_VIRTUAL_H
|
||
|
|
#define LABWC_OUTPUT_VIRTUAL_H
|
||
|
|
|
||
|
|
struct server;
|
||
|
|
struct wlr_output;
|
||
|
|
|
||
|
|
void output_virtual_add(struct server *server, const char *output_name,
|
||
|
|
struct wlr_output **store_wlr_output);
|
||
|
|
void output_virtual_remove(struct server *server, const char *output_name);
|
||
|
|
|
||
|
|
#endif
|