flipperzero-firmware/applications/gui/icon.h
あく a7283280ef
GUI: Icons and IconsAnimation refactoring. Switch assets to new Icon Api (#566)
* GUI: Icons and IconsAnimation refactoring. Switch assets to new Icon API.
* Gui: icon and animation draw now do not accept null pointer
* Format Sources
* Fix no debug build
* Furi: stricter checks in memmgr
2021-07-07 11:57:49 +03:00

19 lines
277 B
C

#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern "C" {
#endif
typedef struct Icon Icon;
uint8_t icon_get_width(const Icon* instance);
uint8_t icon_get_height(const Icon* instance);
const uint8_t* icon_get_data(const Icon* instance);
#ifdef __cplusplus
}
#endif