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
35
36typedef struct _ch_image_ {
37 unsigned char* data;
38 int width;
39 int height;
40 int fd;
41 int filesz;
44
45#endif
unsigned char uint8_t
Definition acefiex.h:161
struct _ch_image_ ChImage
Definition image.h:36
uint8_t * image
Definition image.h:42
unsigned char * data
Definition image.h:37
int height
Definition image.h:39
int width
Definition image.h:38
int filesz
Definition image.h:41
int fd
Definition image.h:40