Dunst
Lightweight notification daemon
Loading...
Searching...
No Matches
input.h
Go to the documentation of this file.
1/* SPDX-License-Identifier: BSD-3-Clause */
9
10#ifndef DUNST_INPUT_H
11#define DUNST_INPUT_H
12
13#include <stdbool.h>
14
24void input_handle_click(unsigned int button, bool button_down, int mouse_x, int mouse_y);
25
26#endif
void input_handle_click(unsigned int button, bool button_down, int mouse_x, int mouse_y)
Handle incoming mouse click events.
Definition input.c:67