diff options
Diffstat (limited to 'RGBImage.h')
| -rw-r--r-- | RGBImage.h | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -5,8 +5,7 @@ #include <stdio.h> typedef uint8_t byte; -typedef uint16_t byte2; -typedef uint32_t byte4; +typedef uint32_t color; typedef struct ARGB { byte a; @@ -15,7 +14,7 @@ typedef struct ARGB { byte b; } ARGB; -void ARGB_set(ARGB* rgb, byte4 color); +void ARGB_set(ARGB* rgb, color color); void ARGB_merge(ARGB* bottom, ARGB top); typedef struct RGBImage { |
