src/lib/image.h
author Tero Marttila <terom@fixme.fi>
Tue, 29 Dec 2009 01:06:52 +0200
changeset 11 eb2a1472f084
parent 7 997906f5fd2d
child 56 d5e3089906da
permissions -rw-r--r--
PT_OPEN_UPDATE
#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;
};


#endif