Last change
on this file since 5 was 2, checked in by Dmitry A. Kuminov, 16 years ago |
Initially imported qt-all-opensource-src-4.5.1 from Trolltech.
|
File size:
267 bytes
|
Line | |
---|
1 | #include <png.h>
|
---|
2 |
|
---|
3 | #if !defined(PNG_LIBPNG_VER) || PNG_LIBPNG_VER < 10017
|
---|
4 | # error "Required libpng version 1.0.17 not found."
|
---|
5 | #endif
|
---|
6 |
|
---|
7 | int main(int, char **)
|
---|
8 | {
|
---|
9 | png_structp png_ptr;
|
---|
10 | png_ptr = png_create_read_struct(PNG_LIBPNG_VER_STRING,0,0,0);
|
---|
11 | return 0;
|
---|
12 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.