REminiscence/screenshot.h

10 lines
168 B
C
Raw Permalink Normal View History

2017-11-03 17:00:00 +01:00
#ifndef SCREENSHOT_H__
#define SCREENSHOT_H__
#include <stdint.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