15 lines
213 B
C
15 lines
213 B
C
#ifndef CARD_OS_USER
|
|
#define CARD_OS_USER
|
|
|
|
#include <stdint.h>
|
|
|
|
typedef struct
|
|
{
|
|
uint8_t r, g, b;
|
|
uint16_t x, y, w, h;
|
|
} card_os_rect;
|
|
|
|
void card_os_put_rect(const card_os_rect* rect);
|
|
|
|
#endif // CARD_OS_USER
|