Sat, 18 Feb 2012 23:26:02 +0000
propagate from branch 'im.pidgin.pidgin.2.x.y' (head 21cf1a0d0cfe339d0370dc1585da3165c181dce1)
to branch 'im.pidgin.pidgin' (head de252c67f4ec88ebab77df4842b1b9b5e866a014)
| 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 | ||
|
22686
d41016d7812d
Add extern "C" wrappers to win32 headers. There is also a change here that I thought I committed earlier that should provide better error messages for winsock errors.
Daniel Atallah <datallah@pidgin.im>
parents:
15435
diff
changeset
|
11 | #ifdef __cplusplus |
|
d41016d7812d
Add extern "C" wrappers to win32 headers. There is also a change here that I thought I committed earlier that should provide better error messages for winsock errors.
Daniel Atallah <datallah@pidgin.im>
parents:
15435
diff
changeset
|
12 | extern "C" { |
|
d41016d7812d
Add extern "C" wrappers to win32 headers. There is also a change here that I thought I committed earlier that should provide better error messages for winsock errors.
Daniel Atallah <datallah@pidgin.im>
parents:
15435
diff
changeset
|
13 | #endif /* __cplusplus */ |
|
d41016d7812d
Add extern "C" wrappers to win32 headers. There is also a change here that I thought I committed earlier that should provide better error messages for winsock errors.
Daniel Atallah <datallah@pidgin.im>
parents:
15435
diff
changeset
|
14 | |
|
32206
a2c62b07ae5a
Please correct me if I'm wrong, but I don't think we gain anything
Mark Doliner <markdoliner@pidgin.im>
parents:
22686
diff
changeset
|
15 | typedef enum { |
| 5005 | 16 | UNTAR_LISTING = (1 << 0), |
| 17 | UNTAR_QUIET = (1 << 1), | |
| 18 | UNTAR_VERBOSE = (1 << 2), | |
| 19 | UNTAR_FORCE = (1 << 3), | |
| 20 | UNTAR_ABSPATH = (1 << 4), | |
| 21 | UNTAR_CONVERT = (1 << 5) | |
| 22 | } untar_opt; | |
| 23 | ||
| 24 | int untar(const char *filename, const char *destdir, untar_opt options); | |
| 25 | ||
|
22686
d41016d7812d
Add extern "C" wrappers to win32 headers. There is also a change here that I thought I committed earlier that should provide better error messages for winsock errors.
Daniel Atallah <datallah@pidgin.im>
parents:
15435
diff
changeset
|
26 | #ifdef __cplusplus |
|
d41016d7812d
Add extern "C" wrappers to win32 headers. There is also a change here that I thought I committed earlier that should provide better error messages for winsock errors.
Daniel Atallah <datallah@pidgin.im>
parents:
15435
diff
changeset
|
27 | } |
|
d41016d7812d
Add extern "C" wrappers to win32 headers. There is also a change here that I thought I committed earlier that should provide better error messages for winsock errors.
Daniel Atallah <datallah@pidgin.im>
parents:
15435
diff
changeset
|
28 | #endif /* __cplusplus */ |
|
d41016d7812d
Add extern "C" wrappers to win32 headers. There is also a change here that I thought I committed earlier that should provide better error messages for winsock errors.
Daniel Atallah <datallah@pidgin.im>
parents:
15435
diff
changeset
|
29 | |
| 5005 | 30 | #endif |