2014-04-29 12:26:51 +00:00
|
|
|
#ifndef __BITMAPS_H__
|
|
|
|
#define __BITMAPS_H__
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
typedef struct {
|
2019-04-18 14:27:27 +00:00
|
|
|
uint8_t width, height;
|
|
|
|
const uint8_t *data;
|
2014-04-29 12:26:51 +00:00
|
|
|
} BITMAP;
|
|
|
|
|
2019-11-09 16:12:36 +00:00
|
|
|
extern const BITMAP bmp_btn_cancel;
|
|
|
|
extern const BITMAP bmp_btn_confirm;
|
2014-04-29 12:26:51 +00:00
|
|
|
extern const BITMAP bmp_digit0;
|
|
|
|
extern const BITMAP bmp_digit1;
|
|
|
|
extern const BITMAP bmp_digit2;
|
|
|
|
extern const BITMAP bmp_digit3;
|
|
|
|
extern const BITMAP bmp_digit4;
|
|
|
|
extern const BITMAP bmp_digit5;
|
|
|
|
extern const BITMAP bmp_digit6;
|
|
|
|
extern const BITMAP bmp_digit7;
|
|
|
|
extern const BITMAP bmp_digit8;
|
|
|
|
extern const BITMAP bmp_digit9;
|
|
|
|
extern const BITMAP bmp_gears0;
|
|
|
|
extern const BITMAP bmp_gears1;
|
|
|
|
extern const BITMAP bmp_gears2;
|
|
|
|
extern const BITMAP bmp_gears3;
|
|
|
|
extern const BITMAP bmp_icon_error;
|
|
|
|
extern const BITMAP bmp_icon_info;
|
|
|
|
extern const BITMAP bmp_icon_ok;
|
|
|
|
extern const BITMAP bmp_icon_question;
|
|
|
|
extern const BITMAP bmp_icon_warning;
|
|
|
|
extern const BITMAP bmp_logo48;
|
|
|
|
extern const BITMAP bmp_logo48_empty;
|
2021-02-18 10:56:32 +00:00
|
|
|
extern const BITMAP bmp_logo64_empty_half;
|
|
|
|
extern const BITMAP bmp_logo64_half;
|
2019-03-09 17:24:49 +00:00
|
|
|
extern const BITMAP bmp_webauthn;
|
2014-04-29 12:26:51 +00:00
|
|
|
|
|
|
|
#endif
|