mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-10 01:30:19 +00:00
46 lines
1.3 KiB
C
46 lines
1.3 KiB
C
#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;
|
|
extern const BITMAP bmp_u2f_bitbucket;
|
|
extern const BITMAP bmp_u2f_bitfinex;
|
|
extern const BITMAP bmp_u2f_dropbox;
|
|
extern const BITMAP bmp_u2f_fastmail;
|
|
extern const BITMAP bmp_u2f_gandi;
|
|
extern const BITMAP bmp_u2f_github;
|
|
extern const BITMAP bmp_u2f_gitlab;
|
|
extern const BITMAP bmp_u2f_google;
|
|
extern const BITMAP bmp_u2f_slushpool;
|
|
extern const BITMAP bmp_u2f_yubico;
|
|
|
|
#endif
|