aboutsummaryrefslogtreecommitdiff
path: root/src/bitmap.h
blob: 0f089591dbd729b426f1aa5a46ad4edc795bae1d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef IMV_BITMAP_H
#define IMV_BITMAP_H

struct imv_bitmap {
  int width;
  int height;
  unsigned char *data;
};

struct imv_bitmap *imv_bitmap_clone(struct imv_bitmap *bmp);
void imv_bitmap_free(struct imv_bitmap *bmp);

#endif