Sat, 31 Dec 2022 20:46:09 -0600
Update translations for 2.14.11
| 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 | |
| 5005 | 15 | typedef enum _untar_opt { |
| 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 |