123456789101112131415 |
- #ifndef DD_IMAGE_H
- #define DD_IMAGE_H
- struct dd_image {
- void *pixels;
- int width, height;
- };
- void dd_image_load_bmp(struct dd_image *img, char *filename);
- void dd_image_free(struct dd_image *img);
- void dd_image_draw(struct dd_image *img);
- #endif
|