Clean up some header files
[lsnes.git] / png.hpp
blob30b6d8c78ef8973249a03ac9a27f856d9f374bd6
1 #ifndef _png__hpp__included__
2 #define _png__hpp__included__
4 #include <stdexcept>
5 #include <cstdint>
6 #include <string>
8 void save_png_data(const std::string& file, uint8_t* data24, uint32_t width, uint32_t height) throw(std::bad_alloc,
9 std::runtime_error);
11 #endif