view dmpackutil.h @ 495:30145d17aebd

Move certain editor related targets to the actual TARGETS variable, and remove them from being separately specified in the "make clean" target, thusly cleaning them only when editor is enabled in build configuration.
author Matti Hamalainen <ccr@tnsp.org>
date Fri, 16 Nov 2012 19:18:03 +0200
parents 32250b436bca
children bb14d7907eb2
line wrap: on
line source

/*
 * DMLib
 * -- PACK-file additional utility routines
 * Programmed and designed by Matti 'ccr' Hamalainen
 * (C) Copyright 2011 Tecnic Software productions (TNSP)
 */
#ifndef DMPACKUTIL_H
#define DMPACKUTIL_H
#include "dmpack.h"

DMPackEntry *  dm_pack_entry_copy(const DMPackEntry *);
int            dm_pack_write(DMPackFile *);
int            dm_pack_create(const char *, DMPackFile **);
int            dm_pack_add_file(DMPackFile *, const char *, BOOL, int resFlags, DMPackEntry **);
int            dm_pack_extract_file(DMPackFile *, DMPackEntry *);

#endif // DMPACKUTIL_H