XenevaOS
Loading...
Searching...
No Matches
image.h
Go to the documentation of this file.
1
30#ifndef __CH_IMAGE_H__
31#define __CH_IMAGE_H__
32
33#include <stdint.h>
34
35typedef struct _ch_image_ {
36 unsigned char* data;
37 int width;
38 int height;
39 int fd;
40 int filesz;
43
44#endif
unsigned char uint8_t
Definition acefiex.h:161
struct _ch_image_ ChImage
Definition image.h:35
uint8_t * image
Definition image.h:41
unsigned char * data
Definition image.h:36
int height
Definition image.h:38
int width
Definition image.h:37
int filesz
Definition image.h:40
int fd
Definition image.h:39