1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/* * Copyright 2017 DiUS Computing Pty Ltd. All rights reserved. * * Released under GPLv3, see LICENSE for details. * * @author Johny Mattsson <jmattsson@dius.com.au> */ #ifndef _LOADPNG_H_ #define _LOADPNG_H_ #include "ql.h" ql_raster_image_t *loadpng(const char *path); #endif