1
0
mirror of https://github.com/NGSolve/netgen.git synced 2025-03-22 22:47:56 +05:00

15 lines
229 B
C
Raw Normal View History

2016-02-08 15:53:16 +01:00
/* 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(const char *fileName);
#endif