2017-11-03 17:00:00 +01:00
|
|
|
|
|
|
|
#ifndef SCREENSHOT_H__
|
|
|
|
#define SCREENSHOT_H__
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
void saveTGA(const char *filename, const uint8_t *rgb, int w, int h);
|
2019-10-27 17:00:00 +01:00
|
|
|
void saveBMP(const char *filename, const uint8_t *bits, const uint8_t *pal, int w, int h);
|
2017-11-03 17:00:00 +01:00
|
|
|
|
|
|
|
#endif
|