2014-04-29 12:26:51 +00:00
|
|
|
#ifndef __BITMAPS_H__
|
|
|
|
#define __BITMAPS_H__
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
uint8_t width, height;
|
|
|
|
const uint8_t *data;
|
|
|
|
} BITMAP;
|
|
|
|
|
|
|
|
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;
|
|
|
|
extern const BITMAP bmp_logo64;
|
|
|
|
extern const BITMAP bmp_logo64_empty;
|
2016-06-26 19:46:59 +00:00
|
|
|
extern const BITMAP bmp_u2f_bitbucket;
|
2017-11-03 17:57:50 +00:00
|
|
|
extern const BITMAP bmp_u2f_bitfinex;
|
2016-06-08 15:21:16 +00:00
|
|
|
extern const BITMAP bmp_u2f_dropbox;
|
2016-11-10 12:46:41 +00:00
|
|
|
extern const BITMAP bmp_u2f_fastmail;
|
2017-09-29 16:19:13 +00:00
|
|
|
extern const BITMAP bmp_u2f_gandi;
|
2016-06-08 15:21:16 +00:00
|
|
|
extern const BITMAP bmp_u2f_github;
|
2016-07-04 13:44:47 +00:00
|
|
|
extern const BITMAP bmp_u2f_gitlab;
|
2016-06-08 15:21:16 +00:00
|
|
|
extern const BITMAP bmp_u2f_google;
|
|
|
|
extern const BITMAP bmp_u2f_slushpool;
|
2016-11-15 17:51:29 +00:00
|
|
|
extern const BITMAP bmp_u2f_yubico;
|
2014-04-29 12:26:51 +00:00
|
|
|
|
|
|
|
#endif
|