mirror of
https://github.com/Polprzewodnikowy/N64FlashcartMenu.git
synced 2024-12-04 08:14:14 +01:00
28 lines
389 B
C
28 lines
389 B
C
|
/**
|
||
|
* @file png.h
|
||
|
* @brief PNG decoder
|
||
|
* @ingroup menu
|
||
|
*/
|
||
|
|
||
|
#ifndef PNG_DECODER_H__
|
||
|
#define PNG_DECODER_H__
|
||
|
|
||
|
|
||
|
#include <surface.h>
|
||
|
|
||
|
|
||
|
/** @brief PNG decoder errors */
|
||
|
typedef enum {
|
||
|
PNG_OK,
|
||
|
PNG_ERR_INT,
|
||
|
PNG_ERR_OUT_OF_MEM,
|
||
|
PNG_ERR_NO_FILE,
|
||
|
PNG_ERR_BAD_FILE,
|
||
|
} png_err_t;
|
||
|
|
||
|
|
||
|
png_err_t png_decode (char *path, surface_t *image, int max_width, int max_height);
|
||
|
|
||
|
|
||
|
#endif
|