view src/win32/untar.h @ 6656:dd9e0bd6488e

[gaim-migrate @ 7181] Danilo Segan writes: "Aleksandar has updated some of the translation, and I've updated the other part. So, attached is the new Serbian (sr.po) and Serbian Latin (sr@Latn.po) translation -- both files are gzipped. Because of some updates, it seems that translators are also creditted now: please use the following in that case: Danilo Segan <dsegan@gmx.net> Aleksandar Urosevic <urke@users.sourceforge.net> If you cannot put both names, you can put mine in the "previous translators" list, and Aleksandar's in the "current translators" (though, we're both actively supporting the translation ;-)." committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Sun, 31 Aug 2003 15:32:26 +0000
parents a1f9725f4816
children
line wrap: on
line source

/*
 *  untar.h
 *
 *  Author: Herman Bloggs <hermanator12002@yahoo.com>
 *  Date: April, 2003
 *  Description: untar.c header
 */
#ifndef _UNTAR_H_
#define _UNTAR_H_

typedef enum _untar_opt {
	UNTAR_LISTING =      (1 << 0),
	UNTAR_QUIET =        (1 << 1),
	UNTAR_VERBOSE =      (1 << 2),
	UNTAR_FORCE =        (1 << 3),
	UNTAR_ABSPATH =      (1 << 4),
	UNTAR_CONVERT =      (1 << 5)
} untar_opt;

int untar(const char *filename, const char *destdir, untar_opt options);

#endif