16 lines
274 B
C
16 lines
274 B
C
/**
|
|
* Copyright 2021 Johannes Marbach
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*/
|
|
|
|
|
|
#ifndef BBX_CURSOR_H
|
|
#define BBX_CURSOR_H
|
|
|
|
#include "lvgl/lvgl.h"
|
|
|
|
/* Image description of the mouse cursor */
|
|
extern const lv_img_dsc_t bbx_cursor_img_dsc;
|
|
|
|
#endif /* BBX_CURSOR_H */
|