rootston: cleanup for multiseat

This commit is contained in:
Tony Crisci 2017-11-08 14:53:08 -05:00
parent a00b7f1e9b
commit 992f931ae9
5 changed files with 26 additions and 53 deletions

View file

@ -0,0 +1,15 @@
#ifndef _ROOTSTON_XCURSOR_H
#define _ROOTSTON_XCURSOR_H
#include <wlr/xcursor.h>
struct wlr_xcursor *get_default_xcursor(struct wlr_xcursor_theme *theme);
struct wlr_xcursor *get_move_xcursor(struct wlr_xcursor_theme *theme);
struct wlr_xcursor *get_resize_xcursor(struct wlr_xcursor_theme *theme,
uint32_t edges);
struct wlr_xcursor *get_rotate_xcursor(struct wlr_xcursor_theme *theme);
#endif