lsnes/png.hpp
Ilari Liusvaara c932df0faa lsnes rr0-β0
The first release for public testing.
2011-09-13 17:50:18 +03:00

11 lines
No EOL
265 B
C++

#ifndef _png__hpp__included__
#define _png__hpp__included__
#include <stdexcept>
#include <cstdint>
#include <string>
void save_png_data(const std::string& file, uint8_t* data24, uint32_t width, uint32_t height) throw(std::bad_alloc,
std::runtime_error);
#endif