| 12345678910111213141516171819 |
- #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
|