mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-02 11:55:59 +01:00
14 lines
296 B
C
14 lines
296 B
C
#ifndef _ROOTSTON_XCURSOR_H
|
|
#define _ROOTSTON_XCURSOR_H
|
|
|
|
#include <stdint.h>
|
|
|
|
#define ROOTS_XCURSOR_SIZE 16
|
|
|
|
#define ROOTS_XCURSOR_DEFAULT "left_ptr"
|
|
#define ROOTS_XCURSOR_MOVE "grabbing"
|
|
#define ROOTS_XCURSOR_ROTATE "grabbing"
|
|
|
|
const char *roots_xcursor_get_resize_name(uint32_t edges);
|
|
|
|
#endif
|