10 lines
147 B
C
10 lines
147 B
C
|
|
||
|
#ifndef SCREENSHOT_H__
|
||
|
#define SCREENSHOT_H__
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
void saveTGA(const char *filename, const uint8_t *rgb, int w, int h);
|
||
|
|
||
|
#endif
|