pngtile.tile: change to providing a short Cache-Control: max-age for unknown-url-time images
#ifndef PNGTILE_IMAGE_H
#define PNGTILE_IMAGE_H
/**
* @file
*
* Internal pt_image state
*/
#include "pngtile.h"
struct pt_image {
/** Associated global state */
struct pt_ctx *ctx;
/** Path to .png */
char *path;
/** Cache object */
struct pt_cache *cache;
/** Image info */
struct pt_image_info info;
};
/**
* Open the image's FILE
*/
int pt_image_open_file (struct pt_image *image, FILE **file_ptr);
#endif