icon.h 277 B

12345678910111213141516171819
  1. #pragma once
  2. #include <stdint.h>
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. typedef struct Icon Icon;
  7. uint8_t icon_get_width(const Icon* instance);
  8. uint8_t icon_get_height(const Icon* instance);
  9. const uint8_t* icon_get_data(const Icon* instance);
  10. #ifdef __cplusplus
  11. }
  12. #endif