repo.or.cz
/
lsnes.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fix all warnings -Wall spews
[lsnes.git]
/
png.hpp
blob
30b6d8c78ef8973249a03ac9a27f856d9f374bd6
1
#ifndef _png__hpp__included__
2
#define _png__hpp__included__
3
4
#include <stdexcept>
5
#include <cstdint>
6
#include <string>
7
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
);
10
11
#endif