You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trezor-firmware/core/embed/rust/src/ui/macros.rs

11 lines
260 B

#[allow(unused_macros)] // T1 doesn't use icons (yet)
macro_rules! include_res {
($filename:expr) => {
include_bytes!(concat!(
env!("CARGO_MANIFEST_DIR"),
"/../../src/trezor/res/",
$filename,
))
};
}