2021-09-18 20:47:41 +02:00
|
|
|
/**
|
|
|
|
|
* Copyright 2021 Johannes Marbach
|
2024-01-12 09:51:43 +01:00
|
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
2021-09-18 20:47:41 +02:00
|
|
|
*/
|
|
|
|
|
|
2024-01-12 10:00:05 +01:00
|
|
|
|
2024-02-19 13:20:20 +00:00
|
|
|
#ifndef UL_CURSOR_H
|
|
|
|
|
#define UL_CURSOR_H
|
2021-09-18 20:47:41 +02:00
|
|
|
|
|
|
|
|
#include "lvgl/lvgl.h"
|
|
|
|
|
|
|
|
|
|
/* Image description of the mouse cursor */
|
2024-03-28 13:27:01 +01:00
|
|
|
extern const lv_img_dsc_t bb_cursor_img_dsc;
|
2021-09-18 20:47:41 +02:00
|
|
|
|
2024-02-19 13:20:20 +00:00
|
|
|
#endif /* UL_CURSOR_H */
|