mirror of
https://github.com/NGSolve/netgen.git
synced 2024-11-11 16:49:16 +05:00
15 lines
223 B
C
15 lines
223 B
C
|
/* image.h */
|
||
|
|
||
|
#ifndef IMAGE_H
|
||
|
# define IMAGE_H
|
||
|
|
||
|
typedef struct _TK_RGBImageRec
|
||
|
{
|
||
|
int sizeX, sizeY, sizeZ;
|
||
|
unsigned char *data;
|
||
|
} TK_RGBImageRec;
|
||
|
|
||
|
extern TK_RGBImageRec *tkRGBImageLoad(char *fileName);
|
||
|
|
||
|
#endif
|