Fri, 11 Mar 2005 13:05:31 +0000
[gaim-migrate @ 12231]
the cipher api that grim has been working on for ages is finally done!! big
congrats and thanks to him!!
lots of modified files in this commit. it builds here.
moved the md5 files to src/protocols/oscar so that it continues to depend
on nothing in gaim. everything else uses the new centralized cipher api.
I'm not sure if src/md5.* needs to be removed or not, so I left it there.
someone let me know or do it directly.
someone check if these need to be added to potfiles.in
and let there be much rejoicing!
| 5005 | 1 | /* |
| 2 | * untar.h | |
| 3 | * | |
| 4 | * Author: Herman Bloggs <hermanator12002@yahoo.com> | |
| 5 | * Date: April, 2003 | |
| 6 | * Description: untar.c header | |
| 7 | */ | |
| 8 | #ifndef _UNTAR_H_ | |
| 9 | #define _UNTAR_H_ | |
| 10 | ||
| 11 | typedef enum _untar_opt { | |
| 12 | UNTAR_LISTING = (1 << 0), | |
| 13 | UNTAR_QUIET = (1 << 1), | |
| 14 | UNTAR_VERBOSE = (1 << 2), | |
| 15 | UNTAR_FORCE = (1 << 3), | |
| 16 | UNTAR_ABSPATH = (1 << 4), | |
| 17 | UNTAR_CONVERT = (1 << 5) | |
| 18 | } untar_opt; | |
| 19 | ||
| 20 | int untar(const char *filename, const char *destdir, untar_opt options); | |
| 21 | ||
| 22 | #endif |