1 /*
    2 	libpng.a wrapper
    3 
    4 	Basically includes the MorphOS-style library headers here, so that
    5 	code doesn't need to be changed to be portable.
    6 
    7 	Copyright © 2003-2004 The MorphOS Development Team, All Rights Reserved.
    8 */
    9 
   10 #if !defined(__MORPHOS_SHAREDLIBS) || defined(__ixemul__)
   11 
   12 #include_next <png.h>
   13 
   14 #else
   15 
   16 #ifndef PNG_H
   17 #define PNG_H
   18 
   19 #define PNGCONF_H
   20 
   21 #include <libraries/png.h>
   22 #include <proto/png.h>
   23 
   24 #endif /* PNG_H */
   25 
   26 #endif /* __MORPHOS_SHAREDLIBS */