12345678910111213141516171819202122232425262728293031323334353637383940414243 |
-
- #ifndef _UTILS_TGA_H
- #define _UTILS_TGA_H
-
-
- int tgaCheck(const char* filename);
-
-
- int tgaLoad(const char* filename, unsigned char** image,
- unsigned int* width, unsigned int* height, char* type);
-
-
- int tgaSave(const char* filename, unsigned char* image,
- unsigned int width, unsigned int height, char type);
-
- #endif
|