├── pylib ├── lib ├── exec │ ├── lib │ │ └── python2.7 │ │ │ └── config │ │ │ └── Makefile │ └── include │ │ └── python2.7 │ │ └── pyconfig.h └── otherlibs │ └── Crypto ├── iOS-static-libs ├── iPhoneOS-V6-4.3 │ ├── include │ │ ├── curl │ │ │ ├── types.h │ │ │ └── stdcheaders.h │ │ ├── libetpan │ │ │ ├── carray.h │ │ │ ├── chash.h │ │ │ ├── clist.h │ │ │ ├── libetpan-config.h │ │ │ ├── idle.h │ │ │ ├── newsfeed_item_enclosure.h │ │ │ ├── imapdriver_tools_private.h │ │ │ ├── uidplus_types.h │ │ │ ├── uidplus.h │ │ │ ├── newsfeed_types.h │ │ │ ├── mailmessage_types.h │ │ │ ├── mail.h │ │ │ ├── mhdriver.h │ │ │ ├── feeddriver.h │ │ │ ├── imapdriver.h │ │ │ ├── mboxdriver.h │ │ │ ├── nntpdriver.h │ │ │ ├── pop3driver.h │ │ │ ├── dbdriver_message.h │ │ │ ├── mhdriver_cached.h │ │ │ ├── mhdriver_message.h │ │ │ ├── dbdriver.h │ │ │ ├── feeddriver_message.h │ │ │ ├── imapdriver_message.h │ │ │ ├── mboxdriver_message.h │ │ │ ├── nntpdriver_message.h │ │ │ ├── pop3driver_message.h │ │ │ ├── imapdriver_cached.h │ │ │ ├── mailsem.h │ │ │ ├── nntpdriver_cached.h │ │ │ └── pop3driver_cached.h │ │ ├── openssl │ │ │ ├── ebcdic.h │ │ │ └── whrlpool.h │ │ └── sasl │ │ │ ├── md5.h │ │ │ └── hmac-md5.h │ └── lib │ │ ├── libz.a │ │ ├── libssl.a │ │ ├── libcrypto.a │ │ ├── libcurl.a │ │ ├── libetpan.a │ │ ├── libgcrypt.a │ │ ├── libsasl2.a │ │ ├── libssh2.a │ │ ├── libgpg-error.a │ │ ├── charset.alias │ │ ├── pkgconfig │ │ ├── libcrypto.pc │ │ ├── libssl.pc │ │ ├── zlib.pc │ │ ├── openssl.pc │ │ └── libssh2.pc │ │ ├── libsasl2.la │ │ ├── libgcrypt.la │ │ ├── libcurl.la │ │ ├── libgpg-error.la │ │ └── libssh2.la ├── iPhoneOS-V7-4.3 │ ├── include │ │ ├── curl │ │ │ ├── types.h │ │ │ └── stdcheaders.h │ │ ├── libetpan │ │ │ ├── carray.h │ │ │ ├── chash.h │ │ │ ├── clist.h │ │ │ ├── libetpan-config.h │ │ │ ├── idle.h │ │ │ ├── newsfeed_item_enclosure.h │ │ │ ├── imapdriver_tools_private.h │ │ │ ├── uidplus_types.h │ │ │ ├── uidplus.h │ │ │ ├── newsfeed_types.h │ │ │ ├── mailmessage_types.h │ │ │ ├── mail.h │ │ │ ├── mhdriver.h │ │ │ ├── feeddriver.h │ │ │ ├── imapdriver.h │ │ │ ├── mboxdriver.h │ │ │ ├── nntpdriver.h │ │ │ ├── pop3driver.h │ │ │ ├── dbdriver_message.h │ │ │ ├── mhdriver_cached.h │ │ │ ├── mhdriver_message.h │ │ │ ├── dbdriver.h │ │ │ ├── feeddriver_message.h │ │ │ ├── imapdriver_message.h │ │ │ ├── mboxdriver_message.h │ │ │ ├── nntpdriver_message.h │ │ │ ├── pop3driver_message.h │ │ │ ├── imapdriver_cached.h │ │ │ ├── mailsem.h │ │ │ ├── nntpdriver_cached.h │ │ │ └── pop3driver_cached.h │ │ ├── openssl │ │ │ ├── ebcdic.h │ │ │ └── whrlpool.h │ │ └── sasl │ │ │ ├── md5.h │ │ │ └── hmac-md5.h │ └── lib │ │ ├── libz.a │ │ ├── libssl.a │ │ ├── libcrypto.a │ │ ├── libcurl.a │ │ ├── libetpan.a │ │ ├── libgcrypt.a │ │ ├── libsasl2.a │ │ ├── libssh2.a │ │ ├── libgpg-error.a │ │ ├── charset.alias │ │ ├── pkgconfig │ │ ├── libcrypto.pc │ │ ├── libssl.pc │ │ ├── zlib.pc │ │ ├── openssl.pc │ │ └── libssh2.pc │ │ ├── libsasl2.la │ │ ├── libgcrypt.la │ │ ├── libcurl.la │ │ ├── libgpg-error.la │ │ └── libssh2.la ├── iPhoneSimulator-4.3 │ ├── include │ │ ├── curl │ │ │ ├── types.h │ │ │ └── stdcheaders.h │ │ ├── libetpan │ │ │ ├── carray.h │ │ │ ├── chash.h │ │ │ ├── clist.h │ │ │ ├── libetpan-config.h │ │ │ ├── idle.h │ │ │ ├── newsfeed_item_enclosure.h │ │ │ ├── imapdriver_tools_private.h │ │ │ ├── uidplus_types.h │ │ │ ├── uidplus.h │ │ │ ├── newsfeed_types.h │ │ │ ├── mailmessage_types.h │ │ │ ├── mail.h │ │ │ ├── mhdriver.h │ │ │ ├── feeddriver.h │ │ │ ├── imapdriver.h │ │ │ ├── mboxdriver.h │ │ │ ├── nntpdriver.h │ │ │ ├── pop3driver.h │ │ │ ├── dbdriver_message.h │ │ │ ├── mhdriver_message.h │ │ │ ├── mhdriver_cached.h │ │ │ ├── dbdriver.h │ │ │ ├── feeddriver_message.h │ │ │ ├── imapdriver_message.h │ │ │ ├── mboxdriver_message.h │ │ │ ├── nntpdriver_message.h │ │ │ ├── pop3driver_message.h │ │ │ ├── imapdriver_cached.h │ │ │ └── mailsem.h │ │ ├── openssl │ │ │ ├── ebcdic.h │ │ │ └── whrlpool.h │ │ └── sasl │ │ │ ├── md5.h │ │ │ └── hmac-md5.h │ └── lib │ │ ├── libz.a │ │ ├── libcurl.a │ │ ├── libssh2.a │ │ ├── libssl.a │ │ ├── libcrypto.a │ │ ├── libetpan.a │ │ ├── libgcrypt.a │ │ ├── libsasl2.a │ │ ├── libgpg-error.a │ │ ├── charset.alias │ │ ├── pkgconfig │ │ ├── libcrypto.pc │ │ ├── libssl.pc │ │ ├── zlib.pc │ │ ├── openssl.pc │ │ └── libssh2.pc │ │ ├── libsasl2.la │ │ ├── libgcrypt.la │ │ ├── libcurl.la │ │ ├── libgpg-error.la │ │ └── libssh2.la ├── Manifest.txt └── README.md ├── .gitignore ├── .gitmodules ├── README.md └── pygetpath.c /pylib/lib: -------------------------------------------------------------------------------- 1 | ../Python-2.7.3/Lib -------------------------------------------------------------------------------- /pylib/exec/lib/python2.7/config/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pylib/otherlibs/Crypto: -------------------------------------------------------------------------------- 1 | ../../pycrypto/lib/Crypto -------------------------------------------------------------------------------- /pylib/exec/include/python2.7/pyconfig.h: -------------------------------------------------------------------------------- 1 | ../../../pyconfig.h -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V6-4.3/include/curl/types.h: -------------------------------------------------------------------------------- 1 | /* not used */ 2 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V7-4.3/include/curl/types.h: -------------------------------------------------------------------------------- 1 | /* not used */ 2 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneSimulator-4.3/include/curl/types.h: -------------------------------------------------------------------------------- 1 | /* not used */ 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.pyc 3 | .*.swp 4 | /build 5 | 6 | # this is right now the build executable 7 | /python 8 | /libpython.a 9 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V6-4.3/lib/libz.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertz/python-embedded/HEAD/iOS-static-libs/iPhoneOS-V6-4.3/lib/libz.a -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V7-4.3/lib/libz.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertz/python-embedded/HEAD/iOS-static-libs/iPhoneOS-V7-4.3/lib/libz.a -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V6-4.3/lib/libssl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertz/python-embedded/HEAD/iOS-static-libs/iPhoneOS-V6-4.3/lib/libssl.a -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V7-4.3/lib/libssl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertz/python-embedded/HEAD/iOS-static-libs/iPhoneOS-V7-4.3/lib/libssl.a -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V6-4.3/lib/libcrypto.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertz/python-embedded/HEAD/iOS-static-libs/iPhoneOS-V6-4.3/lib/libcrypto.a -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V6-4.3/lib/libcurl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertz/python-embedded/HEAD/iOS-static-libs/iPhoneOS-V6-4.3/lib/libcurl.a -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V6-4.3/lib/libetpan.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertz/python-embedded/HEAD/iOS-static-libs/iPhoneOS-V6-4.3/lib/libetpan.a -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V6-4.3/lib/libgcrypt.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertz/python-embedded/HEAD/iOS-static-libs/iPhoneOS-V6-4.3/lib/libgcrypt.a -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V6-4.3/lib/libsasl2.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertz/python-embedded/HEAD/iOS-static-libs/iPhoneOS-V6-4.3/lib/libsasl2.a -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V6-4.3/lib/libssh2.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertz/python-embedded/HEAD/iOS-static-libs/iPhoneOS-V6-4.3/lib/libssh2.a -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V7-4.3/lib/libcrypto.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertz/python-embedded/HEAD/iOS-static-libs/iPhoneOS-V7-4.3/lib/libcrypto.a -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V7-4.3/lib/libcurl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertz/python-embedded/HEAD/iOS-static-libs/iPhoneOS-V7-4.3/lib/libcurl.a -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V7-4.3/lib/libetpan.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertz/python-embedded/HEAD/iOS-static-libs/iPhoneOS-V7-4.3/lib/libetpan.a -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V7-4.3/lib/libgcrypt.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertz/python-embedded/HEAD/iOS-static-libs/iPhoneOS-V7-4.3/lib/libgcrypt.a -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V7-4.3/lib/libsasl2.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertz/python-embedded/HEAD/iOS-static-libs/iPhoneOS-V7-4.3/lib/libsasl2.a -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V7-4.3/lib/libssh2.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertz/python-embedded/HEAD/iOS-static-libs/iPhoneOS-V7-4.3/lib/libssh2.a -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneSimulator-4.3/lib/libz.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertz/python-embedded/HEAD/iOS-static-libs/iPhoneSimulator-4.3/lib/libz.a -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneSimulator-4.3/lib/libcurl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertz/python-embedded/HEAD/iOS-static-libs/iPhoneSimulator-4.3/lib/libcurl.a -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneSimulator-4.3/lib/libssh2.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertz/python-embedded/HEAD/iOS-static-libs/iPhoneSimulator-4.3/lib/libssh2.a -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneSimulator-4.3/lib/libssl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertz/python-embedded/HEAD/iOS-static-libs/iPhoneSimulator-4.3/lib/libssl.a -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V6-4.3/lib/libgpg-error.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertz/python-embedded/HEAD/iOS-static-libs/iPhoneOS-V6-4.3/lib/libgpg-error.a -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V7-4.3/lib/libgpg-error.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertz/python-embedded/HEAD/iOS-static-libs/iPhoneOS-V7-4.3/lib/libgpg-error.a -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneSimulator-4.3/lib/libcrypto.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertz/python-embedded/HEAD/iOS-static-libs/iPhoneSimulator-4.3/lib/libcrypto.a -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneSimulator-4.3/lib/libetpan.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertz/python-embedded/HEAD/iOS-static-libs/iPhoneSimulator-4.3/lib/libetpan.a -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneSimulator-4.3/lib/libgcrypt.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertz/python-embedded/HEAD/iOS-static-libs/iPhoneSimulator-4.3/lib/libgcrypt.a -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneSimulator-4.3/lib/libsasl2.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertz/python-embedded/HEAD/iOS-static-libs/iPhoneSimulator-4.3/lib/libsasl2.a -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneSimulator-4.3/lib/libgpg-error.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertz/python-embedded/HEAD/iOS-static-libs/iPhoneSimulator-4.3/lib/libgpg-error.a -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V6-4.3/include/libetpan/carray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertz/python-embedded/HEAD/iOS-static-libs/iPhoneOS-V6-4.3/include/libetpan/carray.h -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V6-4.3/include/libetpan/chash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertz/python-embedded/HEAD/iOS-static-libs/iPhoneOS-V6-4.3/include/libetpan/chash.h -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V6-4.3/include/libetpan/clist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertz/python-embedded/HEAD/iOS-static-libs/iPhoneOS-V6-4.3/include/libetpan/clist.h -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V7-4.3/include/libetpan/carray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertz/python-embedded/HEAD/iOS-static-libs/iPhoneOS-V7-4.3/include/libetpan/carray.h -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V7-4.3/include/libetpan/chash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertz/python-embedded/HEAD/iOS-static-libs/iPhoneOS-V7-4.3/include/libetpan/chash.h -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V7-4.3/include/libetpan/clist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertz/python-embedded/HEAD/iOS-static-libs/iPhoneOS-V7-4.3/include/libetpan/clist.h -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneSimulator-4.3/include/libetpan/carray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertz/python-embedded/HEAD/iOS-static-libs/iPhoneSimulator-4.3/include/libetpan/carray.h -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneSimulator-4.3/include/libetpan/chash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertz/python-embedded/HEAD/iOS-static-libs/iPhoneSimulator-4.3/include/libetpan/chash.h -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneSimulator-4.3/include/libetpan/clist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertz/python-embedded/HEAD/iOS-static-libs/iPhoneSimulator-4.3/include/libetpan/clist.h -------------------------------------------------------------------------------- /iOS-static-libs/Manifest.txt: -------------------------------------------------------------------------------- 1 | SDK 4.3 2 | OpenSSL 1.0.0c 3 | Cyrus SASL 2.1.23 4 | libEtPan 1.0 5 | zlib 1.2.5 6 | GnuPG 1.4.11 7 | libgpg-error 1.10 8 | libgcrypt 1.4.6 9 | libssh2 1.2.7 10 | cURL 7.21.3 11 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "CPython"] 2 | path = CPython 3 | url = git@github.com:albertz/CPython.git 4 | branch = tags/v2.7.3 5 | 6 | [submodule "pycrypto"] 7 | path = pycrypto 8 | url = git@github.com:dlitz/pycrypto.git 9 | 10 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V6-4.3/lib/charset.alias: -------------------------------------------------------------------------------- 1 | # This file contains a table of character encoding aliases, 2 | # suitable for operating system 'darwin'. 3 | # It was automatically generated from config.charset. 4 | # Packages using this file: gnupg 5 | * UTF-8 6 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V7-4.3/lib/charset.alias: -------------------------------------------------------------------------------- 1 | # This file contains a table of character encoding aliases, 2 | # suitable for operating system 'darwin'. 3 | # It was automatically generated from config.charset. 4 | # Packages using this file: gnupg 5 | * UTF-8 6 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneSimulator-4.3/lib/charset.alias: -------------------------------------------------------------------------------- 1 | # This file contains a table of character encoding aliases, 2 | # suitable for operating system 'darwin'. 3 | # It was automatically generated from config.charset. 4 | # Packages using this file: gnupg 5 | * UTF-8 6 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V6-4.3/lib/pkgconfig/libcrypto.pc: -------------------------------------------------------------------------------- 1 | prefix=/Users/pol/Source/Google-Code-iOS-Static-Libraries/iPhoneOS-V6-4.3 2 | exec_prefix=${prefix} 3 | libdir=${exec_prefix}/lib 4 | includedir=${prefix}/include 5 | 6 | Name: OpenSSL-libcrypto 7 | Description: OpenSSL cryptography library 8 | Version: 1.0.0c 9 | Requires: 10 | Libs: -L${libdir} -lcrypto -lz 11 | Cflags: -I${includedir} 12 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V7-4.3/lib/pkgconfig/libcrypto.pc: -------------------------------------------------------------------------------- 1 | prefix=/Users/pol/Source/Google-Code-iOS-Static-Libraries/iPhoneOS-V7-4.3 2 | exec_prefix=${prefix} 3 | libdir=${exec_prefix}/lib 4 | includedir=${prefix}/include 5 | 6 | Name: OpenSSL-libcrypto 7 | Description: OpenSSL cryptography library 8 | Version: 1.0.0c 9 | Requires: 10 | Libs: -L${libdir} -lcrypto -lz 11 | Cflags: -I${includedir} 12 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneSimulator-4.3/lib/pkgconfig/libcrypto.pc: -------------------------------------------------------------------------------- 1 | prefix=/Users/pol/Source/Google-Code-iOS-Static-Libraries/iPhoneSimulator-4.3 2 | exec_prefix=${prefix} 3 | libdir=${exec_prefix}/lib 4 | includedir=${prefix}/include 5 | 6 | Name: OpenSSL-libcrypto 7 | Description: OpenSSL cryptography library 8 | Version: 1.0.0c 9 | Requires: 10 | Libs: -L${libdir} -lcrypto -lz 11 | Cflags: -I${includedir} 12 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V6-4.3/lib/pkgconfig/libssl.pc: -------------------------------------------------------------------------------- 1 | prefix=/Users/pol/Source/Google-Code-iOS-Static-Libraries/iPhoneOS-V6-4.3 2 | exec_prefix=${prefix} 3 | libdir=${exec_prefix}/lib 4 | includedir=${prefix}/include 5 | 6 | Name: OpenSSL 7 | Description: Secure Sockets Layer and cryptography libraries 8 | Version: 1.0.0c 9 | Requires: 10 | Libs: -L${libdir} -lssl -lcrypto -lz 11 | Cflags: -I${includedir} 12 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V7-4.3/lib/pkgconfig/libssl.pc: -------------------------------------------------------------------------------- 1 | prefix=/Users/pol/Source/Google-Code-iOS-Static-Libraries/iPhoneOS-V7-4.3 2 | exec_prefix=${prefix} 3 | libdir=${exec_prefix}/lib 4 | includedir=${prefix}/include 5 | 6 | Name: OpenSSL 7 | Description: Secure Sockets Layer and cryptography libraries 8 | Version: 1.0.0c 9 | Requires: 10 | Libs: -L${libdir} -lssl -lcrypto -lz 11 | Cflags: -I${includedir} 12 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V6-4.3/lib/pkgconfig/zlib.pc: -------------------------------------------------------------------------------- 1 | prefix=/Users/pol/Source/Google-Code-iOS-Static-Libraries/iPhoneOS-V6-4.3 2 | exec_prefix=${prefix} 3 | libdir=${exec_prefix}/lib 4 | sharedlibdir=${libdir} 5 | includedir=${prefix}/include 6 | 7 | Name: zlib 8 | Description: zlib compression library 9 | Version: 1.2.5 10 | 11 | Requires: 12 | Libs: -L${libdir} -L${sharedlibdir} -lz 13 | Cflags: -I${includedir} 14 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V7-4.3/lib/pkgconfig/zlib.pc: -------------------------------------------------------------------------------- 1 | prefix=/Users/pol/Source/Google-Code-iOS-Static-Libraries/iPhoneOS-V7-4.3 2 | exec_prefix=${prefix} 3 | libdir=${exec_prefix}/lib 4 | sharedlibdir=${libdir} 5 | includedir=${prefix}/include 6 | 7 | Name: zlib 8 | Description: zlib compression library 9 | Version: 1.2.5 10 | 11 | Requires: 12 | Libs: -L${libdir} -L${sharedlibdir} -lz 13 | Cflags: -I${includedir} 14 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V6-4.3/lib/pkgconfig/openssl.pc: -------------------------------------------------------------------------------- 1 | prefix=/Users/pol/Source/Google-Code-iOS-Static-Libraries/iPhoneOS-V6-4.3 2 | exec_prefix=${prefix} 3 | libdir=${exec_prefix}/lib 4 | includedir=${prefix}/include 5 | 6 | Name: OpenSSL 7 | Description: Secure Sockets Layer and cryptography libraries and tools 8 | Version: 1.0.0c 9 | Requires: 10 | Libs: -L${libdir} -lssl -lcrypto -lz 11 | Cflags: -I${includedir} 12 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V7-4.3/lib/pkgconfig/openssl.pc: -------------------------------------------------------------------------------- 1 | prefix=/Users/pol/Source/Google-Code-iOS-Static-Libraries/iPhoneOS-V7-4.3 2 | exec_prefix=${prefix} 3 | libdir=${exec_prefix}/lib 4 | includedir=${prefix}/include 5 | 6 | Name: OpenSSL 7 | Description: Secure Sockets Layer and cryptography libraries and tools 8 | Version: 1.0.0c 9 | Requires: 10 | Libs: -L${libdir} -lssl -lcrypto -lz 11 | Cflags: -I${includedir} 12 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneSimulator-4.3/lib/pkgconfig/libssl.pc: -------------------------------------------------------------------------------- 1 | prefix=/Users/pol/Source/Google-Code-iOS-Static-Libraries/iPhoneSimulator-4.3 2 | exec_prefix=${prefix} 3 | libdir=${exec_prefix}/lib 4 | includedir=${prefix}/include 5 | 6 | Name: OpenSSL 7 | Description: Secure Sockets Layer and cryptography libraries 8 | Version: 1.0.0c 9 | Requires: 10 | Libs: -L${libdir} -lssl -lcrypto -lz 11 | Cflags: -I${includedir} 12 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneSimulator-4.3/lib/pkgconfig/zlib.pc: -------------------------------------------------------------------------------- 1 | prefix=/Users/pol/Source/Google-Code-iOS-Static-Libraries/iPhoneSimulator-4.3 2 | exec_prefix=${prefix} 3 | libdir=${exec_prefix}/lib 4 | sharedlibdir=${libdir} 5 | includedir=${prefix}/include 6 | 7 | Name: zlib 8 | Description: zlib compression library 9 | Version: 1.2.5 10 | 11 | Requires: 12 | Libs: -L${libdir} -L${sharedlibdir} -lz 13 | Cflags: -I${includedir} 14 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneSimulator-4.3/lib/pkgconfig/openssl.pc: -------------------------------------------------------------------------------- 1 | prefix=/Users/pol/Source/Google-Code-iOS-Static-Libraries/iPhoneSimulator-4.3 2 | exec_prefix=${prefix} 3 | libdir=${exec_prefix}/lib 4 | includedir=${prefix}/include 5 | 6 | Name: OpenSSL 7 | Description: Secure Sockets Layer and cryptography libraries and tools 8 | Version: 1.0.0c 9 | Requires: 10 | Libs: -L${libdir} -lssl -lcrypto -lz 11 | Cflags: -I${includedir} 12 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V6-4.3/include/libetpan/libetpan-config.h: -------------------------------------------------------------------------------- 1 | #ifndef LIBETPAN_CONFIG_H 2 | #define LIBETPAN_CONFIG_H 3 | #if WIN32 4 | # define MMAP_UNAVAILABLE 5 | #endif 6 | #ifdef _MSC_VER 7 | # define inline __inline 8 | #endif 9 | #include 10 | #include 11 | #include 12 | #define MAIL_DIR_SEPARATOR '/' 13 | #define MAIL_DIR_SEPARATOR_S "/" 14 | #ifdef _MSC_VER 15 | # ifdef LIBETPAN_DLL 16 | # define LIBETPAN_EXPORT __declspec(dllexport) 17 | # else 18 | # define LIBETPAN_EXPORT __declspec(dllimport) 19 | # endif 20 | #else 21 | # define LIBETPAN_EXPORT 22 | #endif 23 | #endif 24 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V7-4.3/include/libetpan/libetpan-config.h: -------------------------------------------------------------------------------- 1 | #ifndef LIBETPAN_CONFIG_H 2 | #define LIBETPAN_CONFIG_H 3 | #if WIN32 4 | # define MMAP_UNAVAILABLE 5 | #endif 6 | #ifdef _MSC_VER 7 | # define inline __inline 8 | #endif 9 | #include 10 | #include 11 | #include 12 | #define MAIL_DIR_SEPARATOR '/' 13 | #define MAIL_DIR_SEPARATOR_S "/" 14 | #ifdef _MSC_VER 15 | # ifdef LIBETPAN_DLL 16 | # define LIBETPAN_EXPORT __declspec(dllexport) 17 | # else 18 | # define LIBETPAN_EXPORT __declspec(dllimport) 19 | # endif 20 | #else 21 | # define LIBETPAN_EXPORT 22 | #endif 23 | #endif 24 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneSimulator-4.3/include/libetpan/libetpan-config.h: -------------------------------------------------------------------------------- 1 | #ifndef LIBETPAN_CONFIG_H 2 | #define LIBETPAN_CONFIG_H 3 | #if WIN32 4 | # define MMAP_UNAVAILABLE 5 | #endif 6 | #ifdef _MSC_VER 7 | # define inline __inline 8 | #endif 9 | #include 10 | #include 11 | #include 12 | #define MAIL_DIR_SEPARATOR '/' 13 | #define MAIL_DIR_SEPARATOR_S "/" 14 | #ifdef _MSC_VER 15 | # ifdef LIBETPAN_DLL 16 | # define LIBETPAN_EXPORT __declspec(dllexport) 17 | # else 18 | # define LIBETPAN_EXPORT __declspec(dllimport) 19 | # endif 20 | #else 21 | # define LIBETPAN_EXPORT 22 | #endif 23 | #endif 24 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Python embedded 2 | =============== 3 | 4 | Build a single static library with Python and PyCrypto. 5 | 6 | This passes `test_crypto()` in [binstruct](https://github.com/albertz/binstruct/). 7 | 8 | --- 9 | 10 | I tried a sample iOS binary where I linked against `libpython.a` and copied the `pylib` directory into Resources (following not-included symlinks). 11 | 12 | This is the sample code: 13 | 14 | Py_SetProgramName((char*)[[[[NSBundle mainBundle] bundlePath] stringByAppendingString:@"/"] UTF8String]); 15 | Py_Initialize(); 16 | PyRun_SimpleString("print 'Hello world!'"); 17 | 18 | And it works. :) 19 | 20 | 21 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V6-4.3/include/openssl/ebcdic.h: -------------------------------------------------------------------------------- 1 | /* crypto/ebcdic.h */ 2 | 3 | #ifndef HEADER_EBCDIC_H 4 | #define HEADER_EBCDIC_H 5 | 6 | #include 7 | 8 | /* Avoid name clashes with other applications */ 9 | #define os_toascii _openssl_os_toascii 10 | #define os_toebcdic _openssl_os_toebcdic 11 | #define ebcdic2ascii _openssl_ebcdic2ascii 12 | #define ascii2ebcdic _openssl_ascii2ebcdic 13 | 14 | extern const unsigned char os_toascii[256]; 15 | extern const unsigned char os_toebcdic[256]; 16 | void *ebcdic2ascii(void *dest, const void *srce, size_t count); 17 | void *ascii2ebcdic(void *dest, const void *srce, size_t count); 18 | 19 | #endif 20 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V7-4.3/include/openssl/ebcdic.h: -------------------------------------------------------------------------------- 1 | /* crypto/ebcdic.h */ 2 | 3 | #ifndef HEADER_EBCDIC_H 4 | #define HEADER_EBCDIC_H 5 | 6 | #include 7 | 8 | /* Avoid name clashes with other applications */ 9 | #define os_toascii _openssl_os_toascii 10 | #define os_toebcdic _openssl_os_toebcdic 11 | #define ebcdic2ascii _openssl_ebcdic2ascii 12 | #define ascii2ebcdic _openssl_ascii2ebcdic 13 | 14 | extern const unsigned char os_toascii[256]; 15 | extern const unsigned char os_toebcdic[256]; 16 | void *ebcdic2ascii(void *dest, const void *srce, size_t count); 17 | void *ascii2ebcdic(void *dest, const void *srce, size_t count); 18 | 19 | #endif 20 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneSimulator-4.3/include/openssl/ebcdic.h: -------------------------------------------------------------------------------- 1 | /* crypto/ebcdic.h */ 2 | 3 | #ifndef HEADER_EBCDIC_H 4 | #define HEADER_EBCDIC_H 5 | 6 | #include 7 | 8 | /* Avoid name clashes with other applications */ 9 | #define os_toascii _openssl_os_toascii 10 | #define os_toebcdic _openssl_os_toebcdic 11 | #define ebcdic2ascii _openssl_ebcdic2ascii 12 | #define ascii2ebcdic _openssl_ascii2ebcdic 13 | 14 | extern const unsigned char os_toascii[256]; 15 | extern const unsigned char os_toebcdic[256]; 16 | void *ebcdic2ascii(void *dest, const void *srce, size_t count); 17 | void *ascii2ebcdic(void *dest, const void *srce, size_t count); 18 | 19 | #endif 20 | -------------------------------------------------------------------------------- /iOS-static-libs/README.md: -------------------------------------------------------------------------------- 1 | This is from http://code.google.com/p/ios-static-libraries/ 2 | 3 | HEADER_SEARCH_PATHS[sdk=iphoneos4.3][arch=armv7] = ${SRCROOT}/../iPhoneOS-V7-4.3/include 4 | HEADER_SEARCH_PATHS[sdk=iphoneos4.3][arch=armv6] = ${SRCROOT}/../iPhoneOS-V6-4.3/include 5 | HEADER_SEARCH_PATHS[sdk=iphonesimulator4.3][arch=*] = ${SRCROOT}/../iPhoneSimulator-4.3/include 6 | LIBRARY_SEARCH_PATHS[sdk=iphoneos4.3][arch=armv7] = ${SRCROOT}/../iPhoneOS-V7-4.3/lib 7 | LIBRARY_SEARCH_PATHS[sdk=iphoneos4.3][arch=armv6] = ${SRCROOT}/../iPhoneOS-V6-4.3/lib 8 | LIBRARY_SEARCH_PATHS[sdk=iphonesimulator4.3][arch=*] = ${SRCROOT}/../iPhoneSimulator-4.3/lib 9 | OTHER_LDFLAGS = -Wl,-search_paths_first -lz -lcrypto -liconv -lssl -lsasl2 -letpan -lgcrypt -lgpg-error -lssh2 -lcurl 10 | 11 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V6-4.3/include/libetpan/idle.h: -------------------------------------------------------------------------------- 1 | #ifndef MAILIMAP_IDLE_H 2 | 3 | #define MAILIMAP_IDLE_H 4 | 5 | #ifdef __cplusplus 6 | extern "C" { 7 | #endif 8 | 9 | #include "mailimap_types.h" 10 | 11 | LIBETPAN_EXPORT 12 | int mailimap_idle(mailimap * session); 13 | 14 | LIBETPAN_EXPORT 15 | int mailimap_idle_done(mailimap * session); 16 | 17 | LIBETPAN_EXPORT 18 | int mailimap_idle_get_fd(mailimap * session); 19 | 20 | /* delay in seconds */ 21 | LIBETPAN_EXPORT 22 | void mailimap_idle_set_delay(mailimap * session, long delay); 23 | 24 | LIBETPAN_EXPORT 25 | long mailimap_idle_get_done_delay(mailimap * session); 26 | 27 | LIBETPAN_EXPORT 28 | int mailimap_has_idle(mailimap * session); 29 | 30 | #ifdef __cplusplus 31 | } 32 | #endif 33 | 34 | #endif 35 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V7-4.3/include/libetpan/idle.h: -------------------------------------------------------------------------------- 1 | #ifndef MAILIMAP_IDLE_H 2 | 3 | #define MAILIMAP_IDLE_H 4 | 5 | #ifdef __cplusplus 6 | extern "C" { 7 | #endif 8 | 9 | #include "mailimap_types.h" 10 | 11 | LIBETPAN_EXPORT 12 | int mailimap_idle(mailimap * session); 13 | 14 | LIBETPAN_EXPORT 15 | int mailimap_idle_done(mailimap * session); 16 | 17 | LIBETPAN_EXPORT 18 | int mailimap_idle_get_fd(mailimap * session); 19 | 20 | /* delay in seconds */ 21 | LIBETPAN_EXPORT 22 | void mailimap_idle_set_delay(mailimap * session, long delay); 23 | 24 | LIBETPAN_EXPORT 25 | long mailimap_idle_get_done_delay(mailimap * session); 26 | 27 | LIBETPAN_EXPORT 28 | int mailimap_has_idle(mailimap * session); 29 | 30 | #ifdef __cplusplus 31 | } 32 | #endif 33 | 34 | #endif 35 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneSimulator-4.3/include/libetpan/idle.h: -------------------------------------------------------------------------------- 1 | #ifndef MAILIMAP_IDLE_H 2 | 3 | #define MAILIMAP_IDLE_H 4 | 5 | #ifdef __cplusplus 6 | extern "C" { 7 | #endif 8 | 9 | #include "mailimap_types.h" 10 | 11 | LIBETPAN_EXPORT 12 | int mailimap_idle(mailimap * session); 13 | 14 | LIBETPAN_EXPORT 15 | int mailimap_idle_done(mailimap * session); 16 | 17 | LIBETPAN_EXPORT 18 | int mailimap_idle_get_fd(mailimap * session); 19 | 20 | /* delay in seconds */ 21 | LIBETPAN_EXPORT 22 | void mailimap_idle_set_delay(mailimap * session, long delay); 23 | 24 | LIBETPAN_EXPORT 25 | long mailimap_idle_get_done_delay(mailimap * session); 26 | 27 | LIBETPAN_EXPORT 28 | int mailimap_has_idle(mailimap * session); 29 | 30 | #ifdef __cplusplus 31 | } 32 | #endif 33 | 34 | #endif 35 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V6-4.3/lib/pkgconfig/libssh2.pc: -------------------------------------------------------------------------------- 1 | ########################################################################### 2 | # libssh2 installation details 3 | ########################################################################### 4 | 5 | prefix=/Users/pol/Source/Google-Code-iOS-Static-Libraries/iPhoneOS-V6-4.3 6 | exec_prefix=${prefix} 7 | libdir=${exec_prefix}/lib 8 | includedir=${prefix}/include 9 | 10 | Name: libssh2 11 | URL: http://www.libssh2.org/ 12 | Description: Library for SSH based connunication 13 | Version: 1.2.7 14 | Libs: -L${libdir} -lssh2 -arch armv6 -pipe -no-cpp-precomp -isysroot /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.3.sdk -L/Users/pol/Source/Google-Code-iOS-Static-Libraries/iPhoneOS-V6-4.3/lib 15 | Libs.private: 16 | Cflags: -I${includedir} 17 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V7-4.3/lib/pkgconfig/libssh2.pc: -------------------------------------------------------------------------------- 1 | ########################################################################### 2 | # libssh2 installation details 3 | ########################################################################### 4 | 5 | prefix=/Users/pol/Source/Google-Code-iOS-Static-Libraries/iPhoneOS-V7-4.3 6 | exec_prefix=${prefix} 7 | libdir=${exec_prefix}/lib 8 | includedir=${prefix}/include 9 | 10 | Name: libssh2 11 | URL: http://www.libssh2.org/ 12 | Description: Library for SSH based connunication 13 | Version: 1.2.7 14 | Libs: -L${libdir} -lssh2 -arch armv7 -pipe -no-cpp-precomp -isysroot /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.3.sdk -L/Users/pol/Source/Google-Code-iOS-Static-Libraries/iPhoneOS-V7-4.3/lib 15 | Libs.private: 16 | Cflags: -I${includedir} 17 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneSimulator-4.3/lib/pkgconfig/libssh2.pc: -------------------------------------------------------------------------------- 1 | ########################################################################### 2 | # libssh2 installation details 3 | ########################################################################### 4 | 5 | prefix=/Users/pol/Source/Google-Code-iOS-Static-Libraries/iPhoneSimulator-4.3 6 | exec_prefix=${prefix} 7 | libdir=${exec_prefix}/lib 8 | includedir=${prefix}/include 9 | 10 | Name: libssh2 11 | URL: http://www.libssh2.org/ 12 | Description: Library for SSH based connunication 13 | Version: 1.2.7 14 | Libs: -L${libdir} -lssh2 -arch i386 -pipe -no-cpp-precomp -isysroot /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk -L/Users/pol/Source/Google-Code-iOS-Static-Libraries/iPhoneSimulator-4.3/lib 15 | Libs.private: 16 | Cflags: -I${includedir} 17 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V6-4.3/lib/libsasl2.la: -------------------------------------------------------------------------------- 1 | # libsasl2.la - a libtool library file 2 | # Generated by ltmain.sh - GNU libtool 1.3.5 (1.385.2.206 2000/05/27 11:12:27) 3 | # 4 | # Please DO NOT delete this file! 5 | # It is necessary for linking the library. 6 | 7 | # The name that we can dlopen(3). 8 | dlname='' 9 | 10 | # Names of this library. 11 | library_names='' 12 | 13 | # The name of the static archive. 14 | old_library='libsasl2.a' 15 | 16 | # Libraries that this one depends upon. 17 | dependency_libs=' -L/Users/pol/Source/Google-Code-iOS-Static-Libraries/iPhoneOS-V6-4.3/lib -ldl -lresolv -lresolv' 18 | 19 | # Version information for libsasl2. 20 | current=2 21 | age=0 22 | revision=23 23 | 24 | # Is this an already installed library? 25 | installed=yes 26 | 27 | # Directory that this library needs to be installed in: 28 | libdir='/Users/pol/Source/Google-Code-iOS-Static-Libraries/iPhoneOS-V6-4.3/lib' 29 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V7-4.3/lib/libsasl2.la: -------------------------------------------------------------------------------- 1 | # libsasl2.la - a libtool library file 2 | # Generated by ltmain.sh - GNU libtool 1.3.5 (1.385.2.206 2000/05/27 11:12:27) 3 | # 4 | # Please DO NOT delete this file! 5 | # It is necessary for linking the library. 6 | 7 | # The name that we can dlopen(3). 8 | dlname='' 9 | 10 | # Names of this library. 11 | library_names='' 12 | 13 | # The name of the static archive. 14 | old_library='libsasl2.a' 15 | 16 | # Libraries that this one depends upon. 17 | dependency_libs=' -L/Users/pol/Source/Google-Code-iOS-Static-Libraries/iPhoneOS-V7-4.3/lib -ldl -lresolv -lresolv' 18 | 19 | # Version information for libsasl2. 20 | current=2 21 | age=0 22 | revision=23 23 | 24 | # Is this an already installed library? 25 | installed=yes 26 | 27 | # Directory that this library needs to be installed in: 28 | libdir='/Users/pol/Source/Google-Code-iOS-Static-Libraries/iPhoneOS-V7-4.3/lib' 29 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneSimulator-4.3/lib/libsasl2.la: -------------------------------------------------------------------------------- 1 | # libsasl2.la - a libtool library file 2 | # Generated by ltmain.sh - GNU libtool 1.3.5 (1.385.2.206 2000/05/27 11:12:27) 3 | # 4 | # Please DO NOT delete this file! 5 | # It is necessary for linking the library. 6 | 7 | # The name that we can dlopen(3). 8 | dlname='' 9 | 10 | # Names of this library. 11 | library_names='' 12 | 13 | # The name of the static archive. 14 | old_library='libsasl2.a' 15 | 16 | # Libraries that this one depends upon. 17 | dependency_libs=' -L/Users/pol/Source/Google-Code-iOS-Static-Libraries/iPhoneSimulator-4.3/lib -ldl -lresolv -lresolv' 18 | 19 | # Version information for libsasl2. 20 | current=2 21 | age=0 22 | revision=23 23 | 24 | # Is this an already installed library? 25 | installed=yes 26 | 27 | # Directory that this library needs to be installed in: 28 | libdir='/Users/pol/Source/Google-Code-iOS-Static-Libraries/iPhoneSimulator-4.3/lib' 29 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V6-4.3/include/libetpan/newsfeed_item_enclosure.h: -------------------------------------------------------------------------------- 1 | #ifndef NEWSFEED_ITEM_ENCLOSURE_H 2 | 3 | #define NEWSFEED_ITEM_ENCLOSURE_H 4 | 5 | #include 6 | 7 | struct newsfeed_item_enclosure * newsfeed_item_enclosure_new(void); 8 | void newsfeed_item_enclosure_free(struct newsfeed_item_enclosure * enclosure); 9 | 10 | char * newsfeed_item_enclosure_get_url(struct newsfeed_item_enclosure * enclosure); 11 | int newsfeed_item_enclosure_set_url(struct newsfeed_item_enclosure * enclosure, 12 | const char * url); 13 | 14 | char * newsfeed_item_enclosure_get_type(struct newsfeed_item_enclosure * enclosure); 15 | int newsfeed_item_enclosure_set_type(struct newsfeed_item_enclosure * enclosure, 16 | const char * type); 17 | 18 | size_t newsfeed_item_enclosure_get_size(struct newsfeed_item_enclosure * enclosure); 19 | void newsfeed_item_enclosure_set_size(struct newsfeed_item_enclosure * enclosure, 20 | size_t size); 21 | 22 | #endif 23 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V7-4.3/include/libetpan/newsfeed_item_enclosure.h: -------------------------------------------------------------------------------- 1 | #ifndef NEWSFEED_ITEM_ENCLOSURE_H 2 | 3 | #define NEWSFEED_ITEM_ENCLOSURE_H 4 | 5 | #include 6 | 7 | struct newsfeed_item_enclosure * newsfeed_item_enclosure_new(void); 8 | void newsfeed_item_enclosure_free(struct newsfeed_item_enclosure * enclosure); 9 | 10 | char * newsfeed_item_enclosure_get_url(struct newsfeed_item_enclosure * enclosure); 11 | int newsfeed_item_enclosure_set_url(struct newsfeed_item_enclosure * enclosure, 12 | const char * url); 13 | 14 | char * newsfeed_item_enclosure_get_type(struct newsfeed_item_enclosure * enclosure); 15 | int newsfeed_item_enclosure_set_type(struct newsfeed_item_enclosure * enclosure, 16 | const char * type); 17 | 18 | size_t newsfeed_item_enclosure_get_size(struct newsfeed_item_enclosure * enclosure); 19 | void newsfeed_item_enclosure_set_size(struct newsfeed_item_enclosure * enclosure, 20 | size_t size); 21 | 22 | #endif 23 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneSimulator-4.3/include/libetpan/newsfeed_item_enclosure.h: -------------------------------------------------------------------------------- 1 | #ifndef NEWSFEED_ITEM_ENCLOSURE_H 2 | 3 | #define NEWSFEED_ITEM_ENCLOSURE_H 4 | 5 | #include 6 | 7 | struct newsfeed_item_enclosure * newsfeed_item_enclosure_new(void); 8 | void newsfeed_item_enclosure_free(struct newsfeed_item_enclosure * enclosure); 9 | 10 | char * newsfeed_item_enclosure_get_url(struct newsfeed_item_enclosure * enclosure); 11 | int newsfeed_item_enclosure_set_url(struct newsfeed_item_enclosure * enclosure, 12 | const char * url); 13 | 14 | char * newsfeed_item_enclosure_get_type(struct newsfeed_item_enclosure * enclosure); 15 | int newsfeed_item_enclosure_set_type(struct newsfeed_item_enclosure * enclosure, 16 | const char * type); 17 | 18 | size_t newsfeed_item_enclosure_get_size(struct newsfeed_item_enclosure * enclosure); 19 | void newsfeed_item_enclosure_set_size(struct newsfeed_item_enclosure * enclosure, 20 | size_t size); 21 | 22 | #endif 23 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V6-4.3/include/libetpan/imapdriver_tools_private.h: -------------------------------------------------------------------------------- 1 | #ifndef IMAPDRIVER_TOOLS_PRIVATE_H 2 | 3 | #define IMAPDRIVER_TOOLS_PRIVATE_H 4 | 5 | #include "mail_cache_db.h" 6 | 7 | int 8 | imapdriver_get_cached_envelope(struct mail_cache_db * cache_db, 9 | MMAPString * mmapstr, 10 | mailsession * session, mailmessage * msg, 11 | struct mailimf_fields ** result); 12 | 13 | int 14 | imapdriver_write_cached_envelope(struct mail_cache_db * cache_db, 15 | MMAPString * mmapstr, 16 | mailsession * session, mailmessage * msg, 17 | struct mailimf_fields * fields); 18 | 19 | int imap_error_to_mail_error(int error); 20 | 21 | int imap_store_flags(mailimap * imap, uint32_t first, uint32_t last, 22 | struct mail_flags * flags); 23 | 24 | int imap_fetch_flags(mailimap * imap, 25 | uint32_t indx, struct mail_flags ** result); 26 | 27 | int imap_get_messages_list(mailimap * imap, 28 | mailsession * session, mailmessage_driver * driver, 29 | uint32_t first_index, 30 | struct mailmessage_list ** result); 31 | 32 | #endif 33 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V7-4.3/include/libetpan/imapdriver_tools_private.h: -------------------------------------------------------------------------------- 1 | #ifndef IMAPDRIVER_TOOLS_PRIVATE_H 2 | 3 | #define IMAPDRIVER_TOOLS_PRIVATE_H 4 | 5 | #include "mail_cache_db.h" 6 | 7 | int 8 | imapdriver_get_cached_envelope(struct mail_cache_db * cache_db, 9 | MMAPString * mmapstr, 10 | mailsession * session, mailmessage * msg, 11 | struct mailimf_fields ** result); 12 | 13 | int 14 | imapdriver_write_cached_envelope(struct mail_cache_db * cache_db, 15 | MMAPString * mmapstr, 16 | mailsession * session, mailmessage * msg, 17 | struct mailimf_fields * fields); 18 | 19 | int imap_error_to_mail_error(int error); 20 | 21 | int imap_store_flags(mailimap * imap, uint32_t first, uint32_t last, 22 | struct mail_flags * flags); 23 | 24 | int imap_fetch_flags(mailimap * imap, 25 | uint32_t indx, struct mail_flags ** result); 26 | 27 | int imap_get_messages_list(mailimap * imap, 28 | mailsession * session, mailmessage_driver * driver, 29 | uint32_t first_index, 30 | struct mailmessage_list ** result); 31 | 32 | #endif 33 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneSimulator-4.3/include/libetpan/imapdriver_tools_private.h: -------------------------------------------------------------------------------- 1 | #ifndef IMAPDRIVER_TOOLS_PRIVATE_H 2 | 3 | #define IMAPDRIVER_TOOLS_PRIVATE_H 4 | 5 | #include "mail_cache_db.h" 6 | 7 | int 8 | imapdriver_get_cached_envelope(struct mail_cache_db * cache_db, 9 | MMAPString * mmapstr, 10 | mailsession * session, mailmessage * msg, 11 | struct mailimf_fields ** result); 12 | 13 | int 14 | imapdriver_write_cached_envelope(struct mail_cache_db * cache_db, 15 | MMAPString * mmapstr, 16 | mailsession * session, mailmessage * msg, 17 | struct mailimf_fields * fields); 18 | 19 | int imap_error_to_mail_error(int error); 20 | 21 | int imap_store_flags(mailimap * imap, uint32_t first, uint32_t last, 22 | struct mail_flags * flags); 23 | 24 | int imap_fetch_flags(mailimap * imap, 25 | uint32_t indx, struct mail_flags ** result); 26 | 27 | int imap_get_messages_list(mailimap * imap, 28 | mailsession * session, mailmessage_driver * driver, 29 | uint32_t first_index, 30 | struct mailmessage_list ** result); 31 | 32 | #endif 33 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V6-4.3/include/openssl/whrlpool.h: -------------------------------------------------------------------------------- 1 | #ifndef HEADER_WHRLPOOL_H 2 | #define HEADER_WHRLPOOL_H 3 | 4 | #include 5 | #include 6 | 7 | #ifdef __cplusplus 8 | extern "C" { 9 | #endif 10 | 11 | #define WHIRLPOOL_DIGEST_LENGTH (512/8) 12 | #define WHIRLPOOL_BBLOCK 512 13 | #define WHIRLPOOL_COUNTER (256/8) 14 | 15 | typedef struct { 16 | union { 17 | unsigned char c[WHIRLPOOL_DIGEST_LENGTH]; 18 | /* double q is here to ensure 64-bit alignment */ 19 | double q[WHIRLPOOL_DIGEST_LENGTH/sizeof(double)]; 20 | } H; 21 | unsigned char data[WHIRLPOOL_BBLOCK/8]; 22 | unsigned int bitoff; 23 | size_t bitlen[WHIRLPOOL_COUNTER/sizeof(size_t)]; 24 | } WHIRLPOOL_CTX; 25 | 26 | #ifndef OPENSSL_NO_WHIRLPOOL 27 | int WHIRLPOOL_Init (WHIRLPOOL_CTX *c); 28 | int WHIRLPOOL_Update (WHIRLPOOL_CTX *c,const void *inp,size_t bytes); 29 | void WHIRLPOOL_BitUpdate(WHIRLPOOL_CTX *c,const void *inp,size_t bits); 30 | int WHIRLPOOL_Final (unsigned char *md,WHIRLPOOL_CTX *c); 31 | unsigned char *WHIRLPOOL(const void *inp,size_t bytes,unsigned char *md); 32 | #endif 33 | 34 | #ifdef __cplusplus 35 | } 36 | #endif 37 | 38 | #endif 39 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V7-4.3/include/openssl/whrlpool.h: -------------------------------------------------------------------------------- 1 | #ifndef HEADER_WHRLPOOL_H 2 | #define HEADER_WHRLPOOL_H 3 | 4 | #include 5 | #include 6 | 7 | #ifdef __cplusplus 8 | extern "C" { 9 | #endif 10 | 11 | #define WHIRLPOOL_DIGEST_LENGTH (512/8) 12 | #define WHIRLPOOL_BBLOCK 512 13 | #define WHIRLPOOL_COUNTER (256/8) 14 | 15 | typedef struct { 16 | union { 17 | unsigned char c[WHIRLPOOL_DIGEST_LENGTH]; 18 | /* double q is here to ensure 64-bit alignment */ 19 | double q[WHIRLPOOL_DIGEST_LENGTH/sizeof(double)]; 20 | } H; 21 | unsigned char data[WHIRLPOOL_BBLOCK/8]; 22 | unsigned int bitoff; 23 | size_t bitlen[WHIRLPOOL_COUNTER/sizeof(size_t)]; 24 | } WHIRLPOOL_CTX; 25 | 26 | #ifndef OPENSSL_NO_WHIRLPOOL 27 | int WHIRLPOOL_Init (WHIRLPOOL_CTX *c); 28 | int WHIRLPOOL_Update (WHIRLPOOL_CTX *c,const void *inp,size_t bytes); 29 | void WHIRLPOOL_BitUpdate(WHIRLPOOL_CTX *c,const void *inp,size_t bits); 30 | int WHIRLPOOL_Final (unsigned char *md,WHIRLPOOL_CTX *c); 31 | unsigned char *WHIRLPOOL(const void *inp,size_t bytes,unsigned char *md); 32 | #endif 33 | 34 | #ifdef __cplusplus 35 | } 36 | #endif 37 | 38 | #endif 39 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V6-4.3/lib/libgcrypt.la: -------------------------------------------------------------------------------- 1 | # libgcrypt.la - a libtool library file 2 | # Generated by ltmain.sh - GNU libtool 1.5.22 Debian 1.5.22-4 (1.1220.2.365 2005/12/18 22:14:06) 3 | # 4 | # Please DO NOT delete this file! 5 | # It is necessary for linking the library. 6 | 7 | # The name that we can dlopen(3). 8 | dlname='' 9 | 10 | # Names of this library. 11 | library_names='' 12 | 13 | # The name of the static archive. 14 | old_library='libgcrypt.a' 15 | 16 | # Libraries that this one depends upon. 17 | dependency_libs=' -L/Users/pol/Source/Google-Code-iOS-Static-Libraries/iPhoneOS-V6-4.3/lib /Users/pol/Source/Google-Code-iOS-Static-Libraries/iPhoneOS-V6-4.3/lib/libgpg-error.la' 18 | 19 | # Version information for libgcrypt. 20 | current=17 21 | age=6 22 | revision=0 23 | 24 | # Is this an already installed library? 25 | installed=yes 26 | 27 | # Should we warn about portability when linking against -modules? 28 | shouldnotlink=no 29 | 30 | # Files to dlopen/dlpreopen 31 | dlopen='' 32 | dlpreopen='' 33 | 34 | # Directory that this library needs to be installed in: 35 | libdir='/Users/pol/Source/Google-Code-iOS-Static-Libraries/iPhoneOS-V6-4.3/lib' 36 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V7-4.3/lib/libgcrypt.la: -------------------------------------------------------------------------------- 1 | # libgcrypt.la - a libtool library file 2 | # Generated by ltmain.sh - GNU libtool 1.5.22 Debian 1.5.22-4 (1.1220.2.365 2005/12/18 22:14:06) 3 | # 4 | # Please DO NOT delete this file! 5 | # It is necessary for linking the library. 6 | 7 | # The name that we can dlopen(3). 8 | dlname='' 9 | 10 | # Names of this library. 11 | library_names='' 12 | 13 | # The name of the static archive. 14 | old_library='libgcrypt.a' 15 | 16 | # Libraries that this one depends upon. 17 | dependency_libs=' -L/Users/pol/Source/Google-Code-iOS-Static-Libraries/iPhoneOS-V7-4.3/lib /Users/pol/Source/Google-Code-iOS-Static-Libraries/iPhoneOS-V7-4.3/lib/libgpg-error.la' 18 | 19 | # Version information for libgcrypt. 20 | current=17 21 | age=6 22 | revision=0 23 | 24 | # Is this an already installed library? 25 | installed=yes 26 | 27 | # Should we warn about portability when linking against -modules? 28 | shouldnotlink=no 29 | 30 | # Files to dlopen/dlpreopen 31 | dlopen='' 32 | dlpreopen='' 33 | 34 | # Directory that this library needs to be installed in: 35 | libdir='/Users/pol/Source/Google-Code-iOS-Static-Libraries/iPhoneOS-V7-4.3/lib' 36 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneSimulator-4.3/include/openssl/whrlpool.h: -------------------------------------------------------------------------------- 1 | #ifndef HEADER_WHRLPOOL_H 2 | #define HEADER_WHRLPOOL_H 3 | 4 | #include 5 | #include 6 | 7 | #ifdef __cplusplus 8 | extern "C" { 9 | #endif 10 | 11 | #define WHIRLPOOL_DIGEST_LENGTH (512/8) 12 | #define WHIRLPOOL_BBLOCK 512 13 | #define WHIRLPOOL_COUNTER (256/8) 14 | 15 | typedef struct { 16 | union { 17 | unsigned char c[WHIRLPOOL_DIGEST_LENGTH]; 18 | /* double q is here to ensure 64-bit alignment */ 19 | double q[WHIRLPOOL_DIGEST_LENGTH/sizeof(double)]; 20 | } H; 21 | unsigned char data[WHIRLPOOL_BBLOCK/8]; 22 | unsigned int bitoff; 23 | size_t bitlen[WHIRLPOOL_COUNTER/sizeof(size_t)]; 24 | } WHIRLPOOL_CTX; 25 | 26 | #ifndef OPENSSL_NO_WHIRLPOOL 27 | int WHIRLPOOL_Init (WHIRLPOOL_CTX *c); 28 | int WHIRLPOOL_Update (WHIRLPOOL_CTX *c,const void *inp,size_t bytes); 29 | void WHIRLPOOL_BitUpdate(WHIRLPOOL_CTX *c,const void *inp,size_t bits); 30 | int WHIRLPOOL_Final (unsigned char *md,WHIRLPOOL_CTX *c); 31 | unsigned char *WHIRLPOOL(const void *inp,size_t bytes,unsigned char *md); 32 | #endif 33 | 34 | #ifdef __cplusplus 35 | } 36 | #endif 37 | 38 | #endif 39 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneSimulator-4.3/lib/libgcrypt.la: -------------------------------------------------------------------------------- 1 | # libgcrypt.la - a libtool library file 2 | # Generated by ltmain.sh - GNU libtool 1.5.22 Debian 1.5.22-4 (1.1220.2.365 2005/12/18 22:14:06) 3 | # 4 | # Please DO NOT delete this file! 5 | # It is necessary for linking the library. 6 | 7 | # The name that we can dlopen(3). 8 | dlname='' 9 | 10 | # Names of this library. 11 | library_names='' 12 | 13 | # The name of the static archive. 14 | old_library='libgcrypt.a' 15 | 16 | # Libraries that this one depends upon. 17 | dependency_libs=' -L/Users/pol/Source/Google-Code-iOS-Static-Libraries/iPhoneSimulator-4.3/lib /Users/pol/Source/Google-Code-iOS-Static-Libraries/iPhoneSimulator-4.3/lib/libgpg-error.la' 18 | 19 | # Version information for libgcrypt. 20 | current=17 21 | age=6 22 | revision=0 23 | 24 | # Is this an already installed library? 25 | installed=yes 26 | 27 | # Should we warn about portability when linking against -modules? 28 | shouldnotlink=no 29 | 30 | # Files to dlopen/dlpreopen 31 | dlopen='' 32 | dlpreopen='' 33 | 34 | # Directory that this library needs to be installed in: 35 | libdir='/Users/pol/Source/Google-Code-iOS-Static-Libraries/iPhoneSimulator-4.3/lib' 36 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V6-4.3/lib/libcurl.la: -------------------------------------------------------------------------------- 1 | # libcurl.la - a libtool library file 2 | # Generated by ltmain.sh (GNU libtool) 2.2.6b Debian-2.2.6b-2 3 | # 4 | # Please DO NOT delete this file! 5 | # It is necessary for linking the library. 6 | 7 | # The name that we can dlopen(3). 8 | dlname='' 9 | 10 | # Names of this library. 11 | library_names='' 12 | 13 | # The name of the static archive. 14 | old_library='libcurl.a' 15 | 16 | # Linker flags that can not go in dependency_libs. 17 | inherited_linker_flags=' ' 18 | 19 | # Libraries that this one depends upon. 20 | dependency_libs=' -L/Users/pol/Source/Google-Code-iOS-Static-Libraries/iPhoneOS-V6-4.3/lib -lssl -lcrypto -lz' 21 | 22 | # Names of additional weak libraries provided by this library 23 | weak_library_names='' 24 | 25 | # Version information for libcurl. 26 | current=6 27 | age=2 28 | revision=0 29 | 30 | # Is this an already installed library? 31 | installed=yes 32 | 33 | # Should we warn about portability when linking against -modules? 34 | shouldnotlink=no 35 | 36 | # Files to dlopen/dlpreopen 37 | dlopen='' 38 | dlpreopen='' 39 | 40 | # Directory that this library needs to be installed in: 41 | libdir='/Users/pol/Source/Google-Code-iOS-Static-Libraries/iPhoneOS-V6-4.3/lib' 42 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V7-4.3/lib/libcurl.la: -------------------------------------------------------------------------------- 1 | # libcurl.la - a libtool library file 2 | # Generated by ltmain.sh (GNU libtool) 2.2.6b Debian-2.2.6b-2 3 | # 4 | # Please DO NOT delete this file! 5 | # It is necessary for linking the library. 6 | 7 | # The name that we can dlopen(3). 8 | dlname='' 9 | 10 | # Names of this library. 11 | library_names='' 12 | 13 | # The name of the static archive. 14 | old_library='libcurl.a' 15 | 16 | # Linker flags that can not go in dependency_libs. 17 | inherited_linker_flags=' ' 18 | 19 | # Libraries that this one depends upon. 20 | dependency_libs=' -L/Users/pol/Source/Google-Code-iOS-Static-Libraries/iPhoneOS-V7-4.3/lib -lssl -lcrypto -lz' 21 | 22 | # Names of additional weak libraries provided by this library 23 | weak_library_names='' 24 | 25 | # Version information for libcurl. 26 | current=6 27 | age=2 28 | revision=0 29 | 30 | # Is this an already installed library? 31 | installed=yes 32 | 33 | # Should we warn about portability when linking against -modules? 34 | shouldnotlink=no 35 | 36 | # Files to dlopen/dlpreopen 37 | dlopen='' 38 | dlpreopen='' 39 | 40 | # Directory that this library needs to be installed in: 41 | libdir='/Users/pol/Source/Google-Code-iOS-Static-Libraries/iPhoneOS-V7-4.3/lib' 42 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V6-4.3/lib/libgpg-error.la: -------------------------------------------------------------------------------- 1 | # libgpg-error.la - a libtool library file 2 | # Generated by ltmain.sh (GNU libtool) 2.2.6 Debian-2.2.6a-1ubuntu1 3 | # 4 | # Please DO NOT delete this file! 5 | # It is necessary for linking the library. 6 | 7 | # The name that we can dlopen(3). 8 | dlname='' 9 | 10 | # Names of this library. 11 | library_names='' 12 | 13 | # The name of the static archive. 14 | old_library='libgpg-error.a' 15 | 16 | # Linker flags that can not go in dependency_libs. 17 | inherited_linker_flags=' ' 18 | 19 | # Libraries that this one depends upon. 20 | dependency_libs=' -L/Users/pol/Source/Google-Code-iOS-Static-Libraries/iPhoneOS-V6-4.3/lib' 21 | 22 | # Names of additional weak libraries provided by this library 23 | weak_library_names='' 24 | 25 | # Version information for libgpg-error. 26 | current=8 27 | age=8 28 | revision=0 29 | 30 | # Is this an already installed library? 31 | installed=yes 32 | 33 | # Should we warn about portability when linking against -modules? 34 | shouldnotlink=no 35 | 36 | # Files to dlopen/dlpreopen 37 | dlopen='' 38 | dlpreopen='' 39 | 40 | # Directory that this library needs to be installed in: 41 | libdir='/Users/pol/Source/Google-Code-iOS-Static-Libraries/iPhoneOS-V6-4.3/lib' 42 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V7-4.3/lib/libgpg-error.la: -------------------------------------------------------------------------------- 1 | # libgpg-error.la - a libtool library file 2 | # Generated by ltmain.sh (GNU libtool) 2.2.6 Debian-2.2.6a-1ubuntu1 3 | # 4 | # Please DO NOT delete this file! 5 | # It is necessary for linking the library. 6 | 7 | # The name that we can dlopen(3). 8 | dlname='' 9 | 10 | # Names of this library. 11 | library_names='' 12 | 13 | # The name of the static archive. 14 | old_library='libgpg-error.a' 15 | 16 | # Linker flags that can not go in dependency_libs. 17 | inherited_linker_flags=' ' 18 | 19 | # Libraries that this one depends upon. 20 | dependency_libs=' -L/Users/pol/Source/Google-Code-iOS-Static-Libraries/iPhoneOS-V7-4.3/lib' 21 | 22 | # Names of additional weak libraries provided by this library 23 | weak_library_names='' 24 | 25 | # Version information for libgpg-error. 26 | current=8 27 | age=8 28 | revision=0 29 | 30 | # Is this an already installed library? 31 | installed=yes 32 | 33 | # Should we warn about portability when linking against -modules? 34 | shouldnotlink=no 35 | 36 | # Files to dlopen/dlpreopen 37 | dlopen='' 38 | dlpreopen='' 39 | 40 | # Directory that this library needs to be installed in: 41 | libdir='/Users/pol/Source/Google-Code-iOS-Static-Libraries/iPhoneOS-V7-4.3/lib' 42 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneSimulator-4.3/lib/libcurl.la: -------------------------------------------------------------------------------- 1 | # libcurl.la - a libtool library file 2 | # Generated by ltmain.sh (GNU libtool) 2.2.6b Debian-2.2.6b-2 3 | # 4 | # Please DO NOT delete this file! 5 | # It is necessary for linking the library. 6 | 7 | # The name that we can dlopen(3). 8 | dlname='' 9 | 10 | # Names of this library. 11 | library_names='' 12 | 13 | # The name of the static archive. 14 | old_library='libcurl.a' 15 | 16 | # Linker flags that can not go in dependency_libs. 17 | inherited_linker_flags=' ' 18 | 19 | # Libraries that this one depends upon. 20 | dependency_libs=' -L/Users/pol/Source/Google-Code-iOS-Static-Libraries/iPhoneSimulator-4.3/lib -lssl -lcrypto -lz' 21 | 22 | # Names of additional weak libraries provided by this library 23 | weak_library_names='' 24 | 25 | # Version information for libcurl. 26 | current=6 27 | age=2 28 | revision=0 29 | 30 | # Is this an already installed library? 31 | installed=yes 32 | 33 | # Should we warn about portability when linking against -modules? 34 | shouldnotlink=no 35 | 36 | # Files to dlopen/dlpreopen 37 | dlopen='' 38 | dlpreopen='' 39 | 40 | # Directory that this library needs to be installed in: 41 | libdir='/Users/pol/Source/Google-Code-iOS-Static-Libraries/iPhoneSimulator-4.3/lib' 42 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneSimulator-4.3/lib/libgpg-error.la: -------------------------------------------------------------------------------- 1 | # libgpg-error.la - a libtool library file 2 | # Generated by ltmain.sh (GNU libtool) 2.2.6 Debian-2.2.6a-1ubuntu1 3 | # 4 | # Please DO NOT delete this file! 5 | # It is necessary for linking the library. 6 | 7 | # The name that we can dlopen(3). 8 | dlname='' 9 | 10 | # Names of this library. 11 | library_names='' 12 | 13 | # The name of the static archive. 14 | old_library='libgpg-error.a' 15 | 16 | # Linker flags that can not go in dependency_libs. 17 | inherited_linker_flags=' ' 18 | 19 | # Libraries that this one depends upon. 20 | dependency_libs=' -L/Users/pol/Source/Google-Code-iOS-Static-Libraries/iPhoneSimulator-4.3/lib' 21 | 22 | # Names of additional weak libraries provided by this library 23 | weak_library_names='' 24 | 25 | # Version information for libgpg-error. 26 | current=8 27 | age=8 28 | revision=0 29 | 30 | # Is this an already installed library? 31 | installed=yes 32 | 33 | # Should we warn about portability when linking against -modules? 34 | shouldnotlink=no 35 | 36 | # Files to dlopen/dlpreopen 37 | dlopen='' 38 | dlpreopen='' 39 | 40 | # Directory that this library needs to be installed in: 41 | libdir='/Users/pol/Source/Google-Code-iOS-Static-Libraries/iPhoneSimulator-4.3/lib' 42 | -------------------------------------------------------------------------------- /pygetpath.c: -------------------------------------------------------------------------------- 1 | 2 | #include "Python.h" 3 | #include "osdefs.h" 4 | #include 5 | #include 6 | 7 | extern char *Py_GetProgramName(void); 8 | 9 | static int pathCalculated = 0; 10 | static char progPath[MAXPATHLEN+1]; 11 | static char modulePathes[4*MAXPATHLEN+1]; 12 | static char execPrefixPath[2*MAXPATHLEN+1]; 13 | 14 | static void calcPathes() { 15 | if(pathCalculated) return; 16 | 17 | char* p = stpcpy(progPath, Py_GetProgramName()); 18 | while(--p > progPath) { 19 | if(*p == '/') { 20 | *p = 0; 21 | break; 22 | } 23 | } 24 | 25 | strcpy(modulePathes, progPath); 26 | strcat(modulePathes, "/pylib/lib:"); 27 | strcat(modulePathes, progPath); 28 | strcat(modulePathes, "/pylib/otherlibs"); 29 | strcpy(execPrefixPath, progPath); 30 | strcat(execPrefixPath, "/pylib/exec"); 31 | 32 | pathCalculated = 1; 33 | } 34 | 35 | /* External interface */ 36 | 37 | char * 38 | Py_GetPath(void) 39 | { 40 | calcPathes(); 41 | return modulePathes; 42 | } 43 | 44 | char * 45 | Py_GetPrefix(void) 46 | { 47 | calcPathes(); 48 | return "pygetpath.c-PYPREFIX-NOT-SET"; 49 | } 50 | 51 | char * 52 | Py_GetExecPrefix(void) 53 | { 54 | calcPathes(); 55 | return execPrefixPath; 56 | } 57 | 58 | char * 59 | Py_GetProgramFullPath(void) 60 | { 61 | calcPathes(); 62 | return progPath; 63 | } 64 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V6-4.3/lib/libssh2.la: -------------------------------------------------------------------------------- 1 | # libssh2.la - a libtool library file 2 | # Generated by ltmain.sh (GNU libtool) 2.2.6b Debian-2.2.6b-2 3 | # 4 | # Please DO NOT delete this file! 5 | # It is necessary for linking the library. 6 | 7 | # The name that we can dlopen(3). 8 | dlname='' 9 | 10 | # Names of this library. 11 | library_names='' 12 | 13 | # The name of the static archive. 14 | old_library='libssh2.a' 15 | 16 | # Linker flags that can not go in dependency_libs. 17 | inherited_linker_flags=' ' 18 | 19 | # Libraries that this one depends upon. 20 | dependency_libs=' -L/Users/pol/Source/Google-Code-iOS-Static-Libraries/iPhoneOS-V6-4.3/lib /Users/pol/Source/Google-Code-iOS-Static-Libraries/iPhoneOS-V6-4.3/lib/libgcrypt.la /Users/pol/Source/Google-Code-iOS-Static-Libraries/iPhoneOS-V6-4.3/lib/libgpg-error.la -lz' 21 | 22 | # Names of additional weak libraries provided by this library 23 | weak_library_names='' 24 | 25 | # Version information for libssh2. 26 | current=1 27 | age=0 28 | revision=1 29 | 30 | # Is this an already installed library? 31 | installed=yes 32 | 33 | # Should we warn about portability when linking against -modules? 34 | shouldnotlink=no 35 | 36 | # Files to dlopen/dlpreopen 37 | dlopen='' 38 | dlpreopen='' 39 | 40 | # Directory that this library needs to be installed in: 41 | libdir='/Users/pol/Source/Google-Code-iOS-Static-Libraries/iPhoneOS-V6-4.3/lib' 42 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V7-4.3/lib/libssh2.la: -------------------------------------------------------------------------------- 1 | # libssh2.la - a libtool library file 2 | # Generated by ltmain.sh (GNU libtool) 2.2.6b Debian-2.2.6b-2 3 | # 4 | # Please DO NOT delete this file! 5 | # It is necessary for linking the library. 6 | 7 | # The name that we can dlopen(3). 8 | dlname='' 9 | 10 | # Names of this library. 11 | library_names='' 12 | 13 | # The name of the static archive. 14 | old_library='libssh2.a' 15 | 16 | # Linker flags that can not go in dependency_libs. 17 | inherited_linker_flags=' ' 18 | 19 | # Libraries that this one depends upon. 20 | dependency_libs=' -L/Users/pol/Source/Google-Code-iOS-Static-Libraries/iPhoneOS-V7-4.3/lib /Users/pol/Source/Google-Code-iOS-Static-Libraries/iPhoneOS-V7-4.3/lib/libgcrypt.la /Users/pol/Source/Google-Code-iOS-Static-Libraries/iPhoneOS-V7-4.3/lib/libgpg-error.la -lz' 21 | 22 | # Names of additional weak libraries provided by this library 23 | weak_library_names='' 24 | 25 | # Version information for libssh2. 26 | current=1 27 | age=0 28 | revision=1 29 | 30 | # Is this an already installed library? 31 | installed=yes 32 | 33 | # Should we warn about portability when linking against -modules? 34 | shouldnotlink=no 35 | 36 | # Files to dlopen/dlpreopen 37 | dlopen='' 38 | dlpreopen='' 39 | 40 | # Directory that this library needs to be installed in: 41 | libdir='/Users/pol/Source/Google-Code-iOS-Static-Libraries/iPhoneOS-V7-4.3/lib' 42 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V6-4.3/include/libetpan/uidplus_types.h: -------------------------------------------------------------------------------- 1 | #ifndef UIDPLUS_TYPES_H 2 | 3 | #define UIDPLUS_TYPES_H 4 | 5 | #ifdef __cplusplus 6 | extern "C" { 7 | #endif 8 | 9 | #ifndef WIN32 10 | #include 11 | #endif 12 | 13 | #include "mailimap_types.h" 14 | 15 | enum { 16 | MAILIMAP_UIDPLUS_RESP_CODE_APND, 17 | MAILIMAP_UIDPLUS_RESP_CODE_COPY, 18 | MAILIMAP_UIDPLUS_RESP_CODE_UIDNOTSTICKY 19 | }; 20 | 21 | struct mailimap_uidplus_resp_code_apnd { 22 | uint32_t uid_uidvalidity; 23 | struct mailimap_set * uid_set; 24 | }; 25 | 26 | struct mailimap_uidplus_resp_code_copy { 27 | uint32_t uid_uidvalidity; 28 | struct mailimap_set * uid_source_set; 29 | struct mailimap_set * uid_dest_set; 30 | }; 31 | 32 | struct mailimap_uidplus_resp_code_apnd * 33 | mailimap_uidplus_resp_code_apnd_new(uint32_t uid_uidvalidity, struct mailimap_set * uid_set); 34 | void mailimap_uidplus_resp_code_apnd_free(struct mailimap_uidplus_resp_code_apnd * resp_code_apnd); 35 | 36 | struct mailimap_uidplus_resp_code_copy * 37 | mailimap_uidplus_resp_code_copy_new(uint32_t uid_uidvalidity, struct mailimap_set * uid_source_set, struct mailimap_set * uid_dest_set); 38 | void mailimap_uidplus_resp_code_copy_free(struct mailimap_uidplus_resp_code_copy * resp_code_copy); 39 | 40 | void mailimap_uidplus_free(struct mailimap_extension_data * ext_data); 41 | 42 | #ifdef __cplusplus 43 | } 44 | #endif 45 | 46 | #endif 47 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V7-4.3/include/libetpan/uidplus_types.h: -------------------------------------------------------------------------------- 1 | #ifndef UIDPLUS_TYPES_H 2 | 3 | #define UIDPLUS_TYPES_H 4 | 5 | #ifdef __cplusplus 6 | extern "C" { 7 | #endif 8 | 9 | #ifndef WIN32 10 | #include 11 | #endif 12 | 13 | #include "mailimap_types.h" 14 | 15 | enum { 16 | MAILIMAP_UIDPLUS_RESP_CODE_APND, 17 | MAILIMAP_UIDPLUS_RESP_CODE_COPY, 18 | MAILIMAP_UIDPLUS_RESP_CODE_UIDNOTSTICKY 19 | }; 20 | 21 | struct mailimap_uidplus_resp_code_apnd { 22 | uint32_t uid_uidvalidity; 23 | struct mailimap_set * uid_set; 24 | }; 25 | 26 | struct mailimap_uidplus_resp_code_copy { 27 | uint32_t uid_uidvalidity; 28 | struct mailimap_set * uid_source_set; 29 | struct mailimap_set * uid_dest_set; 30 | }; 31 | 32 | struct mailimap_uidplus_resp_code_apnd * 33 | mailimap_uidplus_resp_code_apnd_new(uint32_t uid_uidvalidity, struct mailimap_set * uid_set); 34 | void mailimap_uidplus_resp_code_apnd_free(struct mailimap_uidplus_resp_code_apnd * resp_code_apnd); 35 | 36 | struct mailimap_uidplus_resp_code_copy * 37 | mailimap_uidplus_resp_code_copy_new(uint32_t uid_uidvalidity, struct mailimap_set * uid_source_set, struct mailimap_set * uid_dest_set); 38 | void mailimap_uidplus_resp_code_copy_free(struct mailimap_uidplus_resp_code_copy * resp_code_copy); 39 | 40 | void mailimap_uidplus_free(struct mailimap_extension_data * ext_data); 41 | 42 | #ifdef __cplusplus 43 | } 44 | #endif 45 | 46 | #endif 47 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneSimulator-4.3/lib/libssh2.la: -------------------------------------------------------------------------------- 1 | # libssh2.la - a libtool library file 2 | # Generated by ltmain.sh (GNU libtool) 2.2.6b Debian-2.2.6b-2 3 | # 4 | # Please DO NOT delete this file! 5 | # It is necessary for linking the library. 6 | 7 | # The name that we can dlopen(3). 8 | dlname='' 9 | 10 | # Names of this library. 11 | library_names='' 12 | 13 | # The name of the static archive. 14 | old_library='libssh2.a' 15 | 16 | # Linker flags that can not go in dependency_libs. 17 | inherited_linker_flags=' ' 18 | 19 | # Libraries that this one depends upon. 20 | dependency_libs=' -L/Users/pol/Source/Google-Code-iOS-Static-Libraries/iPhoneSimulator-4.3/lib /Users/pol/Source/Google-Code-iOS-Static-Libraries/iPhoneSimulator-4.3/lib/libgcrypt.la /Users/pol/Source/Google-Code-iOS-Static-Libraries/iPhoneSimulator-4.3/lib/libgpg-error.la -lz' 21 | 22 | # Names of additional weak libraries provided by this library 23 | weak_library_names='' 24 | 25 | # Version information for libssh2. 26 | current=1 27 | age=0 28 | revision=1 29 | 30 | # Is this an already installed library? 31 | installed=yes 32 | 33 | # Should we warn about portability when linking against -modules? 34 | shouldnotlink=no 35 | 36 | # Files to dlopen/dlpreopen 37 | dlopen='' 38 | dlpreopen='' 39 | 40 | # Directory that this library needs to be installed in: 41 | libdir='/Users/pol/Source/Google-Code-iOS-Static-Libraries/iPhoneSimulator-4.3/lib' 42 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneSimulator-4.3/include/libetpan/uidplus_types.h: -------------------------------------------------------------------------------- 1 | #ifndef UIDPLUS_TYPES_H 2 | 3 | #define UIDPLUS_TYPES_H 4 | 5 | #ifdef __cplusplus 6 | extern "C" { 7 | #endif 8 | 9 | #ifndef WIN32 10 | #include 11 | #endif 12 | 13 | #include "mailimap_types.h" 14 | 15 | enum { 16 | MAILIMAP_UIDPLUS_RESP_CODE_APND, 17 | MAILIMAP_UIDPLUS_RESP_CODE_COPY, 18 | MAILIMAP_UIDPLUS_RESP_CODE_UIDNOTSTICKY 19 | }; 20 | 21 | struct mailimap_uidplus_resp_code_apnd { 22 | uint32_t uid_uidvalidity; 23 | struct mailimap_set * uid_set; 24 | }; 25 | 26 | struct mailimap_uidplus_resp_code_copy { 27 | uint32_t uid_uidvalidity; 28 | struct mailimap_set * uid_source_set; 29 | struct mailimap_set * uid_dest_set; 30 | }; 31 | 32 | struct mailimap_uidplus_resp_code_apnd * 33 | mailimap_uidplus_resp_code_apnd_new(uint32_t uid_uidvalidity, struct mailimap_set * uid_set); 34 | void mailimap_uidplus_resp_code_apnd_free(struct mailimap_uidplus_resp_code_apnd * resp_code_apnd); 35 | 36 | struct mailimap_uidplus_resp_code_copy * 37 | mailimap_uidplus_resp_code_copy_new(uint32_t uid_uidvalidity, struct mailimap_set * uid_source_set, struct mailimap_set * uid_dest_set); 38 | void mailimap_uidplus_resp_code_copy_free(struct mailimap_uidplus_resp_code_copy * resp_code_copy); 39 | 40 | void mailimap_uidplus_free(struct mailimap_extension_data * ext_data); 41 | 42 | #ifdef __cplusplus 43 | } 44 | #endif 45 | 46 | #endif 47 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V6-4.3/include/curl/stdcheaders.h: -------------------------------------------------------------------------------- 1 | #ifndef __STDC_HEADERS_H 2 | #define __STDC_HEADERS_H 3 | /*************************************************************************** 4 | * _ _ ____ _ 5 | * Project ___| | | | _ \| | 6 | * / __| | | | |_) | | 7 | * | (__| |_| | _ <| |___ 8 | * \___|\___/|_| \_\_____| 9 | * 10 | * Copyright (C) 1998 - 2010, Daniel Stenberg, , et al. 11 | * 12 | * This software is licensed as described in the file COPYING, which 13 | * you should have received as part of this distribution. The terms 14 | * are also available at http://curl.haxx.se/docs/copyright.html. 15 | * 16 | * You may opt to use, copy, modify, merge, publish, distribute and/or sell 17 | * copies of the Software, and permit persons to whom the Software is 18 | * furnished to do so, under the terms of the COPYING file. 19 | * 20 | * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 21 | * KIND, either express or implied. 22 | * 23 | ***************************************************************************/ 24 | 25 | #include 26 | 27 | size_t fread (void *, size_t, size_t, FILE *); 28 | size_t fwrite (const void *, size_t, size_t, FILE *); 29 | 30 | int strcasecmp(const char *, const char *); 31 | int strncasecmp(const char *, const char *, size_t); 32 | 33 | #endif /* __STDC_HEADERS_H */ 34 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V7-4.3/include/curl/stdcheaders.h: -------------------------------------------------------------------------------- 1 | #ifndef __STDC_HEADERS_H 2 | #define __STDC_HEADERS_H 3 | /*************************************************************************** 4 | * _ _ ____ _ 5 | * Project ___| | | | _ \| | 6 | * / __| | | | |_) | | 7 | * | (__| |_| | _ <| |___ 8 | * \___|\___/|_| \_\_____| 9 | * 10 | * Copyright (C) 1998 - 2010, Daniel Stenberg, , et al. 11 | * 12 | * This software is licensed as described in the file COPYING, which 13 | * you should have received as part of this distribution. The terms 14 | * are also available at http://curl.haxx.se/docs/copyright.html. 15 | * 16 | * You may opt to use, copy, modify, merge, publish, distribute and/or sell 17 | * copies of the Software, and permit persons to whom the Software is 18 | * furnished to do so, under the terms of the COPYING file. 19 | * 20 | * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 21 | * KIND, either express or implied. 22 | * 23 | ***************************************************************************/ 24 | 25 | #include 26 | 27 | size_t fread (void *, size_t, size_t, FILE *); 28 | size_t fwrite (const void *, size_t, size_t, FILE *); 29 | 30 | int strcasecmp(const char *, const char *); 31 | int strncasecmp(const char *, const char *, size_t); 32 | 33 | #endif /* __STDC_HEADERS_H */ 34 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneSimulator-4.3/include/curl/stdcheaders.h: -------------------------------------------------------------------------------- 1 | #ifndef __STDC_HEADERS_H 2 | #define __STDC_HEADERS_H 3 | /*************************************************************************** 4 | * _ _ ____ _ 5 | * Project ___| | | | _ \| | 6 | * / __| | | | |_) | | 7 | * | (__| |_| | _ <| |___ 8 | * \___|\___/|_| \_\_____| 9 | * 10 | * Copyright (C) 1998 - 2010, Daniel Stenberg, , et al. 11 | * 12 | * This software is licensed as described in the file COPYING, which 13 | * you should have received as part of this distribution. The terms 14 | * are also available at http://curl.haxx.se/docs/copyright.html. 15 | * 16 | * You may opt to use, copy, modify, merge, publish, distribute and/or sell 17 | * copies of the Software, and permit persons to whom the Software is 18 | * furnished to do so, under the terms of the COPYING file. 19 | * 20 | * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 21 | * KIND, either express or implied. 22 | * 23 | ***************************************************************************/ 24 | 25 | #include 26 | 27 | size_t fread (void *, size_t, size_t, FILE *); 28 | size_t fwrite (const void *, size_t, size_t, FILE *); 29 | 30 | int strcasecmp(const char *, const char *); 31 | int strncasecmp(const char *, const char *, size_t); 32 | 33 | #endif /* __STDC_HEADERS_H */ 34 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V6-4.3/include/sasl/md5.h: -------------------------------------------------------------------------------- 1 | /* MD5.H - header file for MD5C.C 2 | */ 3 | 4 | /* Copyright (C) 1991-2, RSA Data Security, Inc. Created 1991. All 5 | rights reserved. 6 | 7 | License to copy and use this software is granted provided that it 8 | is identified as the "RSA Data Security, Inc. MD5 Message-Digest 9 | Algorithm" in all material mentioning or referencing this software 10 | or this function. 11 | 12 | License is also granted to make and use derivative works provided 13 | that such works are identified as "derived from the RSA Data 14 | Security, Inc. MD5 Message-Digest Algorithm" in all material 15 | mentioning or referencing the derived work. 16 | 17 | RSA Data Security, Inc. makes no representations concerning either 18 | the merchantability of this software or the suitability of this 19 | software for any particular purpose. It is provided "as is" 20 | without express or implied warranty of any kind. 21 | These notices must be retained in any copies of any part of this 22 | documentation and/or software. 23 | */ 24 | 25 | /* MD5 context. */ 26 | typedef struct { 27 | UINT4 state[4]; /* state (ABCD) */ 28 | UINT4 count[2]; /* number of bits, modulo 2^64 (lsb first) */ 29 | unsigned char buffer[64]; /* input buffer */ 30 | } MD5_CTX; 31 | 32 | #ifdef __cplusplus 33 | extern "C" { 34 | #endif 35 | 36 | void _sasl_MD5Init PROTO_LIST ((MD5_CTX *)); 37 | void _sasl_MD5Update PROTO_LIST 38 | ((MD5_CTX *, const unsigned char *, unsigned int)); 39 | void _sasl_MD5Final PROTO_LIST ((unsigned char [16], MD5_CTX *)); 40 | 41 | #ifdef __cplusplus 42 | } 43 | #endif 44 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V7-4.3/include/sasl/md5.h: -------------------------------------------------------------------------------- 1 | /* MD5.H - header file for MD5C.C 2 | */ 3 | 4 | /* Copyright (C) 1991-2, RSA Data Security, Inc. Created 1991. All 5 | rights reserved. 6 | 7 | License to copy and use this software is granted provided that it 8 | is identified as the "RSA Data Security, Inc. MD5 Message-Digest 9 | Algorithm" in all material mentioning or referencing this software 10 | or this function. 11 | 12 | License is also granted to make and use derivative works provided 13 | that such works are identified as "derived from the RSA Data 14 | Security, Inc. MD5 Message-Digest Algorithm" in all material 15 | mentioning or referencing the derived work. 16 | 17 | RSA Data Security, Inc. makes no representations concerning either 18 | the merchantability of this software or the suitability of this 19 | software for any particular purpose. It is provided "as is" 20 | without express or implied warranty of any kind. 21 | These notices must be retained in any copies of any part of this 22 | documentation and/or software. 23 | */ 24 | 25 | /* MD5 context. */ 26 | typedef struct { 27 | UINT4 state[4]; /* state (ABCD) */ 28 | UINT4 count[2]; /* number of bits, modulo 2^64 (lsb first) */ 29 | unsigned char buffer[64]; /* input buffer */ 30 | } MD5_CTX; 31 | 32 | #ifdef __cplusplus 33 | extern "C" { 34 | #endif 35 | 36 | void _sasl_MD5Init PROTO_LIST ((MD5_CTX *)); 37 | void _sasl_MD5Update PROTO_LIST 38 | ((MD5_CTX *, const unsigned char *, unsigned int)); 39 | void _sasl_MD5Final PROTO_LIST ((unsigned char [16], MD5_CTX *)); 40 | 41 | #ifdef __cplusplus 42 | } 43 | #endif 44 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneSimulator-4.3/include/sasl/md5.h: -------------------------------------------------------------------------------- 1 | /* MD5.H - header file for MD5C.C 2 | */ 3 | 4 | /* Copyright (C) 1991-2, RSA Data Security, Inc. Created 1991. All 5 | rights reserved. 6 | 7 | License to copy and use this software is granted provided that it 8 | is identified as the "RSA Data Security, Inc. MD5 Message-Digest 9 | Algorithm" in all material mentioning or referencing this software 10 | or this function. 11 | 12 | License is also granted to make and use derivative works provided 13 | that such works are identified as "derived from the RSA Data 14 | Security, Inc. MD5 Message-Digest Algorithm" in all material 15 | mentioning or referencing the derived work. 16 | 17 | RSA Data Security, Inc. makes no representations concerning either 18 | the merchantability of this software or the suitability of this 19 | software for any particular purpose. It is provided "as is" 20 | without express or implied warranty of any kind. 21 | These notices must be retained in any copies of any part of this 22 | documentation and/or software. 23 | */ 24 | 25 | /* MD5 context. */ 26 | typedef struct { 27 | UINT4 state[4]; /* state (ABCD) */ 28 | UINT4 count[2]; /* number of bits, modulo 2^64 (lsb first) */ 29 | unsigned char buffer[64]; /* input buffer */ 30 | } MD5_CTX; 31 | 32 | #ifdef __cplusplus 33 | extern "C" { 34 | #endif 35 | 36 | void _sasl_MD5Init PROTO_LIST ((MD5_CTX *)); 37 | void _sasl_MD5Update PROTO_LIST 38 | ((MD5_CTX *, const unsigned char *, unsigned int)); 39 | void _sasl_MD5Final PROTO_LIST ((unsigned char [16], MD5_CTX *)); 40 | 41 | #ifdef __cplusplus 42 | } 43 | #endif 44 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V6-4.3/include/sasl/hmac-md5.h: -------------------------------------------------------------------------------- 1 | /* hmac-md5.h -- HMAC_MD5 functions 2 | */ 3 | 4 | #ifndef HMAC_MD5_H 5 | #define HMAC_MD5_H 1 6 | 7 | #define HMAC_MD5_SIZE 16 8 | 9 | /* intermediate MD5 context */ 10 | typedef struct HMAC_MD5_CTX_s { 11 | MD5_CTX ictx, octx; 12 | } HMAC_MD5_CTX; 13 | 14 | /* intermediate HMAC state 15 | * values stored in network byte order (Big Endian) 16 | */ 17 | typedef struct HMAC_MD5_STATE_s { 18 | UINT4 istate[4]; 19 | UINT4 ostate[4]; 20 | } HMAC_MD5_STATE; 21 | 22 | #ifdef __cplusplus 23 | extern "C" { 24 | #endif 25 | 26 | /* One step hmac computation 27 | * 28 | * digest may be same as text or key 29 | */ 30 | void _sasl_hmac_md5(const unsigned char *text, int text_len, 31 | const unsigned char *key, int key_len, 32 | unsigned char digest[HMAC_MD5_SIZE]); 33 | 34 | /* create context from key 35 | */ 36 | void _sasl_hmac_md5_init(HMAC_MD5_CTX *hmac, 37 | const unsigned char *key, int key_len); 38 | 39 | /* precalculate intermediate state from key 40 | */ 41 | void _sasl_hmac_md5_precalc(HMAC_MD5_STATE *hmac, 42 | const unsigned char *key, int key_len); 43 | 44 | /* initialize context from intermediate state 45 | */ 46 | void _sasl_hmac_md5_import(HMAC_MD5_CTX *hmac, HMAC_MD5_STATE *state); 47 | 48 | #define _sasl_hmac_md5_update(hmac, text, text_len) _sasl_MD5Update(&(hmac)->ictx, (text), (text_len)) 49 | 50 | /* finish hmac from intermediate result. Intermediate result is zeroed. 51 | */ 52 | void _sasl_hmac_md5_final(unsigned char digest[HMAC_MD5_SIZE], 53 | HMAC_MD5_CTX *hmac); 54 | 55 | #ifdef __cplusplus 56 | } 57 | #endif 58 | 59 | #endif /* HMAC_MD5_H */ 60 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V7-4.3/include/sasl/hmac-md5.h: -------------------------------------------------------------------------------- 1 | /* hmac-md5.h -- HMAC_MD5 functions 2 | */ 3 | 4 | #ifndef HMAC_MD5_H 5 | #define HMAC_MD5_H 1 6 | 7 | #define HMAC_MD5_SIZE 16 8 | 9 | /* intermediate MD5 context */ 10 | typedef struct HMAC_MD5_CTX_s { 11 | MD5_CTX ictx, octx; 12 | } HMAC_MD5_CTX; 13 | 14 | /* intermediate HMAC state 15 | * values stored in network byte order (Big Endian) 16 | */ 17 | typedef struct HMAC_MD5_STATE_s { 18 | UINT4 istate[4]; 19 | UINT4 ostate[4]; 20 | } HMAC_MD5_STATE; 21 | 22 | #ifdef __cplusplus 23 | extern "C" { 24 | #endif 25 | 26 | /* One step hmac computation 27 | * 28 | * digest may be same as text or key 29 | */ 30 | void _sasl_hmac_md5(const unsigned char *text, int text_len, 31 | const unsigned char *key, int key_len, 32 | unsigned char digest[HMAC_MD5_SIZE]); 33 | 34 | /* create context from key 35 | */ 36 | void _sasl_hmac_md5_init(HMAC_MD5_CTX *hmac, 37 | const unsigned char *key, int key_len); 38 | 39 | /* precalculate intermediate state from key 40 | */ 41 | void _sasl_hmac_md5_precalc(HMAC_MD5_STATE *hmac, 42 | const unsigned char *key, int key_len); 43 | 44 | /* initialize context from intermediate state 45 | */ 46 | void _sasl_hmac_md5_import(HMAC_MD5_CTX *hmac, HMAC_MD5_STATE *state); 47 | 48 | #define _sasl_hmac_md5_update(hmac, text, text_len) _sasl_MD5Update(&(hmac)->ictx, (text), (text_len)) 49 | 50 | /* finish hmac from intermediate result. Intermediate result is zeroed. 51 | */ 52 | void _sasl_hmac_md5_final(unsigned char digest[HMAC_MD5_SIZE], 53 | HMAC_MD5_CTX *hmac); 54 | 55 | #ifdef __cplusplus 56 | } 57 | #endif 58 | 59 | #endif /* HMAC_MD5_H */ 60 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneSimulator-4.3/include/sasl/hmac-md5.h: -------------------------------------------------------------------------------- 1 | /* hmac-md5.h -- HMAC_MD5 functions 2 | */ 3 | 4 | #ifndef HMAC_MD5_H 5 | #define HMAC_MD5_H 1 6 | 7 | #define HMAC_MD5_SIZE 16 8 | 9 | /* intermediate MD5 context */ 10 | typedef struct HMAC_MD5_CTX_s { 11 | MD5_CTX ictx, octx; 12 | } HMAC_MD5_CTX; 13 | 14 | /* intermediate HMAC state 15 | * values stored in network byte order (Big Endian) 16 | */ 17 | typedef struct HMAC_MD5_STATE_s { 18 | UINT4 istate[4]; 19 | UINT4 ostate[4]; 20 | } HMAC_MD5_STATE; 21 | 22 | #ifdef __cplusplus 23 | extern "C" { 24 | #endif 25 | 26 | /* One step hmac computation 27 | * 28 | * digest may be same as text or key 29 | */ 30 | void _sasl_hmac_md5(const unsigned char *text, int text_len, 31 | const unsigned char *key, int key_len, 32 | unsigned char digest[HMAC_MD5_SIZE]); 33 | 34 | /* create context from key 35 | */ 36 | void _sasl_hmac_md5_init(HMAC_MD5_CTX *hmac, 37 | const unsigned char *key, int key_len); 38 | 39 | /* precalculate intermediate state from key 40 | */ 41 | void _sasl_hmac_md5_precalc(HMAC_MD5_STATE *hmac, 42 | const unsigned char *key, int key_len); 43 | 44 | /* initialize context from intermediate state 45 | */ 46 | void _sasl_hmac_md5_import(HMAC_MD5_CTX *hmac, HMAC_MD5_STATE *state); 47 | 48 | #define _sasl_hmac_md5_update(hmac, text, text_len) _sasl_MD5Update(&(hmac)->ictx, (text), (text_len)) 49 | 50 | /* finish hmac from intermediate result. Intermediate result is zeroed. 51 | */ 52 | void _sasl_hmac_md5_final(unsigned char digest[HMAC_MD5_SIZE], 53 | HMAC_MD5_CTX *hmac); 54 | 55 | #ifdef __cplusplus 56 | } 57 | #endif 58 | 59 | #endif /* HMAC_MD5_H */ 60 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V6-4.3/include/libetpan/uidplus.h: -------------------------------------------------------------------------------- 1 | #ifndef UIDPLUS_H 2 | 3 | #define UIDPLUS_H 4 | 5 | #ifdef __cplusplus 6 | extern "C" { 7 | #endif 8 | 9 | #include 10 | #include 11 | #include 12 | 13 | LIBETPAN_EXPORT 14 | extern struct mailimap_extension_api mailimap_extension_uidplus; 15 | 16 | LIBETPAN_EXPORT 17 | int mailimap_uid_expunge(mailimap * session, struct mailimap_set * set); 18 | 19 | LIBETPAN_EXPORT 20 | int mailimap_uidplus_copy(mailimap * session, struct mailimap_set * set, 21 | const char * mb, 22 | uint32_t * uidvalidity_result, 23 | struct mailimap_set ** source_result, 24 | struct mailimap_set ** dest_result); 25 | 26 | LIBETPAN_EXPORT 27 | int mailimap_uidplus_uid_copy(mailimap * session, struct mailimap_set * set, 28 | const char * mb, 29 | uint32_t * uidvalidity_result, 30 | struct mailimap_set ** source_result, 31 | struct mailimap_set ** dest_result); 32 | 33 | LIBETPAN_EXPORT 34 | int mailimap_uidplus_append(mailimap * session, const char * mailbox, 35 | struct mailimap_flag_list * flag_list, 36 | struct mailimap_date_time * date_time, 37 | const char * literal, size_t literal_size, 38 | uint32_t * uidvalidity_result, 39 | uint32_t * uid_result); 40 | 41 | LIBETPAN_EXPORT 42 | int mailimap_uidplus_append_simple(mailimap * session, const char * mailbox, 43 | const char * content, uint32_t size, 44 | uint32_t * uidvalidity_result, 45 | uint32_t * uid_result); 46 | 47 | LIBETPAN_EXPORT 48 | int mailimap_has_uidplus(mailimap * session); 49 | 50 | #ifdef __cplusplus 51 | } 52 | #endif 53 | 54 | #endif 55 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V7-4.3/include/libetpan/uidplus.h: -------------------------------------------------------------------------------- 1 | #ifndef UIDPLUS_H 2 | 3 | #define UIDPLUS_H 4 | 5 | #ifdef __cplusplus 6 | extern "C" { 7 | #endif 8 | 9 | #include 10 | #include 11 | #include 12 | 13 | LIBETPAN_EXPORT 14 | extern struct mailimap_extension_api mailimap_extension_uidplus; 15 | 16 | LIBETPAN_EXPORT 17 | int mailimap_uid_expunge(mailimap * session, struct mailimap_set * set); 18 | 19 | LIBETPAN_EXPORT 20 | int mailimap_uidplus_copy(mailimap * session, struct mailimap_set * set, 21 | const char * mb, 22 | uint32_t * uidvalidity_result, 23 | struct mailimap_set ** source_result, 24 | struct mailimap_set ** dest_result); 25 | 26 | LIBETPAN_EXPORT 27 | int mailimap_uidplus_uid_copy(mailimap * session, struct mailimap_set * set, 28 | const char * mb, 29 | uint32_t * uidvalidity_result, 30 | struct mailimap_set ** source_result, 31 | struct mailimap_set ** dest_result); 32 | 33 | LIBETPAN_EXPORT 34 | int mailimap_uidplus_append(mailimap * session, const char * mailbox, 35 | struct mailimap_flag_list * flag_list, 36 | struct mailimap_date_time * date_time, 37 | const char * literal, size_t literal_size, 38 | uint32_t * uidvalidity_result, 39 | uint32_t * uid_result); 40 | 41 | LIBETPAN_EXPORT 42 | int mailimap_uidplus_append_simple(mailimap * session, const char * mailbox, 43 | const char * content, uint32_t size, 44 | uint32_t * uidvalidity_result, 45 | uint32_t * uid_result); 46 | 47 | LIBETPAN_EXPORT 48 | int mailimap_has_uidplus(mailimap * session); 49 | 50 | #ifdef __cplusplus 51 | } 52 | #endif 53 | 54 | #endif 55 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneSimulator-4.3/include/libetpan/uidplus.h: -------------------------------------------------------------------------------- 1 | #ifndef UIDPLUS_H 2 | 3 | #define UIDPLUS_H 4 | 5 | #ifdef __cplusplus 6 | extern "C" { 7 | #endif 8 | 9 | #include 10 | #include 11 | #include 12 | 13 | LIBETPAN_EXPORT 14 | extern struct mailimap_extension_api mailimap_extension_uidplus; 15 | 16 | LIBETPAN_EXPORT 17 | int mailimap_uid_expunge(mailimap * session, struct mailimap_set * set); 18 | 19 | LIBETPAN_EXPORT 20 | int mailimap_uidplus_copy(mailimap * session, struct mailimap_set * set, 21 | const char * mb, 22 | uint32_t * uidvalidity_result, 23 | struct mailimap_set ** source_result, 24 | struct mailimap_set ** dest_result); 25 | 26 | LIBETPAN_EXPORT 27 | int mailimap_uidplus_uid_copy(mailimap * session, struct mailimap_set * set, 28 | const char * mb, 29 | uint32_t * uidvalidity_result, 30 | struct mailimap_set ** source_result, 31 | struct mailimap_set ** dest_result); 32 | 33 | LIBETPAN_EXPORT 34 | int mailimap_uidplus_append(mailimap * session, const char * mailbox, 35 | struct mailimap_flag_list * flag_list, 36 | struct mailimap_date_time * date_time, 37 | const char * literal, size_t literal_size, 38 | uint32_t * uidvalidity_result, 39 | uint32_t * uid_result); 40 | 41 | LIBETPAN_EXPORT 42 | int mailimap_uidplus_append_simple(mailimap * session, const char * mailbox, 43 | const char * content, uint32_t size, 44 | uint32_t * uidvalidity_result, 45 | uint32_t * uid_result); 46 | 47 | LIBETPAN_EXPORT 48 | int mailimap_has_uidplus(mailimap * session); 49 | 50 | #ifdef __cplusplus 51 | } 52 | #endif 53 | 54 | #endif 55 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V6-4.3/include/libetpan/newsfeed_types.h: -------------------------------------------------------------------------------- 1 | #ifndef NEWSFEED_TYPES_H 2 | 3 | #define NEWSFEED_TYPES_H 4 | 5 | #include 6 | #include 7 | 8 | enum { 9 | NEWSFEED_NO_ERROR = 0, 10 | NEWSFEED_ERROR_CANCELLED, 11 | NEWSFEED_ERROR_INTERNAL, 12 | NEWSFEED_ERROR_BADURL, 13 | NEWSFEED_ERROR_RESOLVE_PROXY, 14 | NEWSFEED_ERROR_RESOLVE_HOST, 15 | NEWSFEED_ERROR_CONNECT, 16 | NEWSFEED_ERROR_STREAM, 17 | NEWSFEED_ERROR_PROTOCOL, 18 | NEWSFEED_ERROR_PARSE, 19 | NEWSFEED_ERROR_ACCESS, 20 | NEWSFEED_ERROR_AUTHENTICATION, 21 | NEWSFEED_ERROR_FTP, 22 | NEWSFEED_ERROR_PARTIAL_FILE, 23 | NEWSFEED_ERROR_FETCH, 24 | NEWSFEED_ERROR_HTTP, 25 | NEWSFEED_ERROR_FILE, 26 | NEWSFEED_ERROR_PUT, 27 | NEWSFEED_ERROR_MEMORY, 28 | NEWSFEED_ERROR_SSL, 29 | NEWSFEED_ERROR_LDAP, 30 | NEWSFEED_ERROR_UNSUPPORTED_PROTOCOL 31 | }; 32 | 33 | struct newsfeed { 34 | char * feed_url; 35 | char * feed_title; 36 | char * feed_description; 37 | char * feed_language; 38 | char * feed_author; 39 | char * feed_generator; 40 | time_t feed_date; 41 | carray * feed_item_list; 42 | int feed_response_code; 43 | 44 | unsigned int feed_timeout; 45 | }; 46 | 47 | struct newsfeed_item { 48 | char * fi_url; 49 | char * fi_title; 50 | char * fi_summary; 51 | char * fi_text; 52 | char * fi_author; 53 | char * fi_id; 54 | time_t fi_date_published; 55 | time_t fi_date_modified; 56 | struct newsfeed * fi_feed; /* owner */ 57 | struct newsfeed_item_enclosure * fi_enclosure; 58 | }; 59 | 60 | struct newsfeed_item_enclosure { 61 | char * fie_url; 62 | char * fie_type; 63 | size_t fie_size; 64 | }; 65 | 66 | #endif 67 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V7-4.3/include/libetpan/newsfeed_types.h: -------------------------------------------------------------------------------- 1 | #ifndef NEWSFEED_TYPES_H 2 | 3 | #define NEWSFEED_TYPES_H 4 | 5 | #include 6 | #include 7 | 8 | enum { 9 | NEWSFEED_NO_ERROR = 0, 10 | NEWSFEED_ERROR_CANCELLED, 11 | NEWSFEED_ERROR_INTERNAL, 12 | NEWSFEED_ERROR_BADURL, 13 | NEWSFEED_ERROR_RESOLVE_PROXY, 14 | NEWSFEED_ERROR_RESOLVE_HOST, 15 | NEWSFEED_ERROR_CONNECT, 16 | NEWSFEED_ERROR_STREAM, 17 | NEWSFEED_ERROR_PROTOCOL, 18 | NEWSFEED_ERROR_PARSE, 19 | NEWSFEED_ERROR_ACCESS, 20 | NEWSFEED_ERROR_AUTHENTICATION, 21 | NEWSFEED_ERROR_FTP, 22 | NEWSFEED_ERROR_PARTIAL_FILE, 23 | NEWSFEED_ERROR_FETCH, 24 | NEWSFEED_ERROR_HTTP, 25 | NEWSFEED_ERROR_FILE, 26 | NEWSFEED_ERROR_PUT, 27 | NEWSFEED_ERROR_MEMORY, 28 | NEWSFEED_ERROR_SSL, 29 | NEWSFEED_ERROR_LDAP, 30 | NEWSFEED_ERROR_UNSUPPORTED_PROTOCOL 31 | }; 32 | 33 | struct newsfeed { 34 | char * feed_url; 35 | char * feed_title; 36 | char * feed_description; 37 | char * feed_language; 38 | char * feed_author; 39 | char * feed_generator; 40 | time_t feed_date; 41 | carray * feed_item_list; 42 | int feed_response_code; 43 | 44 | unsigned int feed_timeout; 45 | }; 46 | 47 | struct newsfeed_item { 48 | char * fi_url; 49 | char * fi_title; 50 | char * fi_summary; 51 | char * fi_text; 52 | char * fi_author; 53 | char * fi_id; 54 | time_t fi_date_published; 55 | time_t fi_date_modified; 56 | struct newsfeed * fi_feed; /* owner */ 57 | struct newsfeed_item_enclosure * fi_enclosure; 58 | }; 59 | 60 | struct newsfeed_item_enclosure { 61 | char * fie_url; 62 | char * fie_type; 63 | size_t fie_size; 64 | }; 65 | 66 | #endif 67 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneSimulator-4.3/include/libetpan/newsfeed_types.h: -------------------------------------------------------------------------------- 1 | #ifndef NEWSFEED_TYPES_H 2 | 3 | #define NEWSFEED_TYPES_H 4 | 5 | #include 6 | #include 7 | 8 | enum { 9 | NEWSFEED_NO_ERROR = 0, 10 | NEWSFEED_ERROR_CANCELLED, 11 | NEWSFEED_ERROR_INTERNAL, 12 | NEWSFEED_ERROR_BADURL, 13 | NEWSFEED_ERROR_RESOLVE_PROXY, 14 | NEWSFEED_ERROR_RESOLVE_HOST, 15 | NEWSFEED_ERROR_CONNECT, 16 | NEWSFEED_ERROR_STREAM, 17 | NEWSFEED_ERROR_PROTOCOL, 18 | NEWSFEED_ERROR_PARSE, 19 | NEWSFEED_ERROR_ACCESS, 20 | NEWSFEED_ERROR_AUTHENTICATION, 21 | NEWSFEED_ERROR_FTP, 22 | NEWSFEED_ERROR_PARTIAL_FILE, 23 | NEWSFEED_ERROR_FETCH, 24 | NEWSFEED_ERROR_HTTP, 25 | NEWSFEED_ERROR_FILE, 26 | NEWSFEED_ERROR_PUT, 27 | NEWSFEED_ERROR_MEMORY, 28 | NEWSFEED_ERROR_SSL, 29 | NEWSFEED_ERROR_LDAP, 30 | NEWSFEED_ERROR_UNSUPPORTED_PROTOCOL 31 | }; 32 | 33 | struct newsfeed { 34 | char * feed_url; 35 | char * feed_title; 36 | char * feed_description; 37 | char * feed_language; 38 | char * feed_author; 39 | char * feed_generator; 40 | time_t feed_date; 41 | carray * feed_item_list; 42 | int feed_response_code; 43 | 44 | unsigned int feed_timeout; 45 | }; 46 | 47 | struct newsfeed_item { 48 | char * fi_url; 49 | char * fi_title; 50 | char * fi_summary; 51 | char * fi_text; 52 | char * fi_author; 53 | char * fi_id; 54 | time_t fi_date_published; 55 | time_t fi_date_modified; 56 | struct newsfeed * fi_feed; /* owner */ 57 | struct newsfeed_item_enclosure * fi_enclosure; 58 | }; 59 | 60 | struct newsfeed_item_enclosure { 61 | char * fie_url; 62 | char * fie_type; 63 | size_t fie_size; 64 | }; 65 | 66 | #endif 67 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V6-4.3/include/libetpan/mailmessage_types.h: -------------------------------------------------------------------------------- 1 | /* 2 | * libEtPan! -- a mail stuff library 3 | * 4 | * Copyright (C) 2001, 2005 - DINH Viet Hoa 5 | * All rights reserved. 6 | * 7 | * Redistribution and use in source and binary forms, with or without 8 | * modification, are permitted provided that the following conditions 9 | * are met: 10 | * 1. Redistributions of source code must retain the above copyright 11 | * notice, this list of conditions and the following disclaimer. 12 | * 2. Redistributions in binary form must reproduce the above copyright 13 | * notice, this list of conditions and the following disclaimer in the 14 | * documentation and/or other materials provided with the distribution. 15 | * 3. Neither the name of the libEtPan! project nor the names of its 16 | * contributors may be used to endorse or promote products derived 17 | * from this software without specific prior written permission. 18 | * 19 | * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND 20 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE 23 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 24 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 25 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 26 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 28 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29 | * SUCH DAMAGE. 30 | */ 31 | 32 | /* 33 | * $Id: mailmessage_types.h,v 1.9 2004/11/21 21:53:35 hoa Exp $ 34 | */ 35 | 36 | #ifndef MAILMESSAGE_TYPES_H 37 | 38 | #define MAILMESSAGE_TYPES_H 39 | 40 | #include 41 | 42 | #ifdef __cplusplus 43 | extern "C" { 44 | #endif 45 | 46 | #ifdef __cplusplus 47 | } 48 | #endif 49 | 50 | #endif 51 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V7-4.3/include/libetpan/mailmessage_types.h: -------------------------------------------------------------------------------- 1 | /* 2 | * libEtPan! -- a mail stuff library 3 | * 4 | * Copyright (C) 2001, 2005 - DINH Viet Hoa 5 | * All rights reserved. 6 | * 7 | * Redistribution and use in source and binary forms, with or without 8 | * modification, are permitted provided that the following conditions 9 | * are met: 10 | * 1. Redistributions of source code must retain the above copyright 11 | * notice, this list of conditions and the following disclaimer. 12 | * 2. Redistributions in binary form must reproduce the above copyright 13 | * notice, this list of conditions and the following disclaimer in the 14 | * documentation and/or other materials provided with the distribution. 15 | * 3. Neither the name of the libEtPan! project nor the names of its 16 | * contributors may be used to endorse or promote products derived 17 | * from this software without specific prior written permission. 18 | * 19 | * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND 20 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE 23 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 24 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 25 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 26 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 28 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29 | * SUCH DAMAGE. 30 | */ 31 | 32 | /* 33 | * $Id: mailmessage_types.h,v 1.9 2004/11/21 21:53:35 hoa Exp $ 34 | */ 35 | 36 | #ifndef MAILMESSAGE_TYPES_H 37 | 38 | #define MAILMESSAGE_TYPES_H 39 | 40 | #include 41 | 42 | #ifdef __cplusplus 43 | extern "C" { 44 | #endif 45 | 46 | #ifdef __cplusplus 47 | } 48 | #endif 49 | 50 | #endif 51 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneSimulator-4.3/include/libetpan/mailmessage_types.h: -------------------------------------------------------------------------------- 1 | /* 2 | * libEtPan! -- a mail stuff library 3 | * 4 | * Copyright (C) 2001, 2005 - DINH Viet Hoa 5 | * All rights reserved. 6 | * 7 | * Redistribution and use in source and binary forms, with or without 8 | * modification, are permitted provided that the following conditions 9 | * are met: 10 | * 1. Redistributions of source code must retain the above copyright 11 | * notice, this list of conditions and the following disclaimer. 12 | * 2. Redistributions in binary form must reproduce the above copyright 13 | * notice, this list of conditions and the following disclaimer in the 14 | * documentation and/or other materials provided with the distribution. 15 | * 3. Neither the name of the libEtPan! project nor the names of its 16 | * contributors may be used to endorse or promote products derived 17 | * from this software without specific prior written permission. 18 | * 19 | * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND 20 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE 23 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 24 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 25 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 26 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 28 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29 | * SUCH DAMAGE. 30 | */ 31 | 32 | /* 33 | * $Id: mailmessage_types.h,v 1.9 2004/11/21 21:53:35 hoa Exp $ 34 | */ 35 | 36 | #ifndef MAILMESSAGE_TYPES_H 37 | 38 | #define MAILMESSAGE_TYPES_H 39 | 40 | #include 41 | 42 | #ifdef __cplusplus 43 | extern "C" { 44 | #endif 45 | 46 | #ifdef __cplusplus 47 | } 48 | #endif 49 | 50 | #endif 51 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V6-4.3/include/libetpan/mail.h: -------------------------------------------------------------------------------- 1 | /* 2 | * libEtPan! -- a mail stuff library 3 | * 4 | * Copyright (C) 2001, 2005 - DINH Viet Hoa 5 | * All rights reserved. 6 | * 7 | * Redistribution and use in source and binary forms, with or without 8 | * modification, are permitted provided that the following conditions 9 | * are met: 10 | * 1. Redistributions of source code must retain the above copyright 11 | * notice, this list of conditions and the following disclaimer. 12 | * 2. Redistributions in binary form must reproduce the above copyright 13 | * notice, this list of conditions and the following disclaimer in the 14 | * documentation and/or other materials provided with the distribution. 15 | * 3. Neither the name of the libEtPan! project nor the names of its 16 | * contributors may be used to endorse or promote products derived 17 | * from this software without specific prior written permission. 18 | * 19 | * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND 20 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE 23 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 24 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 25 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 26 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 28 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29 | * SUCH DAMAGE. 30 | */ 31 | 32 | /* 33 | * $Id: mail.h,v 1.8 2004/11/21 21:53:31 hoa Exp $ 34 | */ 35 | 36 | #ifndef MAIL_H 37 | 38 | #define MAIL_H 39 | 40 | #ifdef __cplusplus 41 | extern "C" { 42 | #endif 43 | 44 | #ifndef TRUE 45 | #define TRUE 1 46 | #endif 47 | 48 | #ifndef FALSE 49 | #define FALSE 0 50 | #endif 51 | 52 | #ifdef __cplusplus 53 | } 54 | #endif 55 | 56 | #endif 57 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V7-4.3/include/libetpan/mail.h: -------------------------------------------------------------------------------- 1 | /* 2 | * libEtPan! -- a mail stuff library 3 | * 4 | * Copyright (C) 2001, 2005 - DINH Viet Hoa 5 | * All rights reserved. 6 | * 7 | * Redistribution and use in source and binary forms, with or without 8 | * modification, are permitted provided that the following conditions 9 | * are met: 10 | * 1. Redistributions of source code must retain the above copyright 11 | * notice, this list of conditions and the following disclaimer. 12 | * 2. Redistributions in binary form must reproduce the above copyright 13 | * notice, this list of conditions and the following disclaimer in the 14 | * documentation and/or other materials provided with the distribution. 15 | * 3. Neither the name of the libEtPan! project nor the names of its 16 | * contributors may be used to endorse or promote products derived 17 | * from this software without specific prior written permission. 18 | * 19 | * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND 20 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE 23 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 24 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 25 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 26 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 28 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29 | * SUCH DAMAGE. 30 | */ 31 | 32 | /* 33 | * $Id: mail.h,v 1.8 2004/11/21 21:53:31 hoa Exp $ 34 | */ 35 | 36 | #ifndef MAIL_H 37 | 38 | #define MAIL_H 39 | 40 | #ifdef __cplusplus 41 | extern "C" { 42 | #endif 43 | 44 | #ifndef TRUE 45 | #define TRUE 1 46 | #endif 47 | 48 | #ifndef FALSE 49 | #define FALSE 0 50 | #endif 51 | 52 | #ifdef __cplusplus 53 | } 54 | #endif 55 | 56 | #endif 57 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneSimulator-4.3/include/libetpan/mail.h: -------------------------------------------------------------------------------- 1 | /* 2 | * libEtPan! -- a mail stuff library 3 | * 4 | * Copyright (C) 2001, 2005 - DINH Viet Hoa 5 | * All rights reserved. 6 | * 7 | * Redistribution and use in source and binary forms, with or without 8 | * modification, are permitted provided that the following conditions 9 | * are met: 10 | * 1. Redistributions of source code must retain the above copyright 11 | * notice, this list of conditions and the following disclaimer. 12 | * 2. Redistributions in binary form must reproduce the above copyright 13 | * notice, this list of conditions and the following disclaimer in the 14 | * documentation and/or other materials provided with the distribution. 15 | * 3. Neither the name of the libEtPan! project nor the names of its 16 | * contributors may be used to endorse or promote products derived 17 | * from this software without specific prior written permission. 18 | * 19 | * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND 20 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE 23 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 24 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 25 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 26 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 28 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29 | * SUCH DAMAGE. 30 | */ 31 | 32 | /* 33 | * $Id: mail.h,v 1.8 2004/11/21 21:53:31 hoa Exp $ 34 | */ 35 | 36 | #ifndef MAIL_H 37 | 38 | #define MAIL_H 39 | 40 | #ifdef __cplusplus 41 | extern "C" { 42 | #endif 43 | 44 | #ifndef TRUE 45 | #define TRUE 1 46 | #endif 47 | 48 | #ifndef FALSE 49 | #define FALSE 0 50 | #endif 51 | 52 | #ifdef __cplusplus 53 | } 54 | #endif 55 | 56 | #endif 57 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V6-4.3/include/libetpan/mhdriver.h: -------------------------------------------------------------------------------- 1 | /* 2 | * libEtPan! -- a mail stuff library 3 | * 4 | * Copyright (C) 2001, 2005 - DINH Viet Hoa 5 | * All rights reserved. 6 | * 7 | * Redistribution and use in source and binary forms, with or without 8 | * modification, are permitted provided that the following conditions 9 | * are met: 10 | * 1. Redistributions of source code must retain the above copyright 11 | * notice, this list of conditions and the following disclaimer. 12 | * 2. Redistributions in binary form must reproduce the above copyright 13 | * notice, this list of conditions and the following disclaimer in the 14 | * documentation and/or other materials provided with the distribution. 15 | * 3. Neither the name of the libEtPan! project nor the names of its 16 | * contributors may be used to endorse or promote products derived 17 | * from this software without specific prior written permission. 18 | * 19 | * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND 20 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE 23 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 24 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 25 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 26 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 28 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29 | * SUCH DAMAGE. 30 | */ 31 | 32 | /* 33 | * $Id: mhdriver.h,v 1.12 2004/11/21 21:53:33 hoa Exp $ 34 | */ 35 | 36 | #ifndef MHDRIVER_H 37 | 38 | #define MHDRIVER_H 39 | 40 | #include 41 | 42 | #ifdef __cplusplus 43 | extern "C" { 44 | #endif 45 | 46 | extern mailsession_driver * mh_session_driver; 47 | 48 | #ifdef __cplusplus 49 | } 50 | #endif 51 | 52 | #endif 53 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V7-4.3/include/libetpan/mhdriver.h: -------------------------------------------------------------------------------- 1 | /* 2 | * libEtPan! -- a mail stuff library 3 | * 4 | * Copyright (C) 2001, 2005 - DINH Viet Hoa 5 | * All rights reserved. 6 | * 7 | * Redistribution and use in source and binary forms, with or without 8 | * modification, are permitted provided that the following conditions 9 | * are met: 10 | * 1. Redistributions of source code must retain the above copyright 11 | * notice, this list of conditions and the following disclaimer. 12 | * 2. Redistributions in binary form must reproduce the above copyright 13 | * notice, this list of conditions and the following disclaimer in the 14 | * documentation and/or other materials provided with the distribution. 15 | * 3. Neither the name of the libEtPan! project nor the names of its 16 | * contributors may be used to endorse or promote products derived 17 | * from this software without specific prior written permission. 18 | * 19 | * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND 20 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE 23 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 24 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 25 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 26 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 28 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29 | * SUCH DAMAGE. 30 | */ 31 | 32 | /* 33 | * $Id: mhdriver.h,v 1.12 2004/11/21 21:53:33 hoa Exp $ 34 | */ 35 | 36 | #ifndef MHDRIVER_H 37 | 38 | #define MHDRIVER_H 39 | 40 | #include 41 | 42 | #ifdef __cplusplus 43 | extern "C" { 44 | #endif 45 | 46 | extern mailsession_driver * mh_session_driver; 47 | 48 | #ifdef __cplusplus 49 | } 50 | #endif 51 | 52 | #endif 53 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneSimulator-4.3/include/libetpan/mhdriver.h: -------------------------------------------------------------------------------- 1 | /* 2 | * libEtPan! -- a mail stuff library 3 | * 4 | * Copyright (C) 2001, 2005 - DINH Viet Hoa 5 | * All rights reserved. 6 | * 7 | * Redistribution and use in source and binary forms, with or without 8 | * modification, are permitted provided that the following conditions 9 | * are met: 10 | * 1. Redistributions of source code must retain the above copyright 11 | * notice, this list of conditions and the following disclaimer. 12 | * 2. Redistributions in binary form must reproduce the above copyright 13 | * notice, this list of conditions and the following disclaimer in the 14 | * documentation and/or other materials provided with the distribution. 15 | * 3. Neither the name of the libEtPan! project nor the names of its 16 | * contributors may be used to endorse or promote products derived 17 | * from this software without specific prior written permission. 18 | * 19 | * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND 20 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE 23 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 24 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 25 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 26 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 28 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29 | * SUCH DAMAGE. 30 | */ 31 | 32 | /* 33 | * $Id: mhdriver.h,v 1.12 2004/11/21 21:53:33 hoa Exp $ 34 | */ 35 | 36 | #ifndef MHDRIVER_H 37 | 38 | #define MHDRIVER_H 39 | 40 | #include 41 | 42 | #ifdef __cplusplus 43 | extern "C" { 44 | #endif 45 | 46 | extern mailsession_driver * mh_session_driver; 47 | 48 | #ifdef __cplusplus 49 | } 50 | #endif 51 | 52 | #endif 53 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V6-4.3/include/libetpan/feeddriver.h: -------------------------------------------------------------------------------- 1 | /* 2 | * libEtPan! -- a mail stuff library 3 | * 4 | * Copyright (C) 2001, 2005 - DINH Viet Hoa 5 | * All rights reserved. 6 | * 7 | * Redistribution and use in source and binary forms, with or without 8 | * modification, are permitted provided that the following conditions 9 | * are met: 10 | * 1. Redistributions of source code must retain the above copyright 11 | * notice, this list of conditions and the following disclaimer. 12 | * 2. Redistributions in binary form must reproduce the above copyright 13 | * notice, this list of conditions and the following disclaimer in the 14 | * documentation and/or other materials provided with the distribution. 15 | * 3. Neither the name of the libEtPan! project nor the names of its 16 | * contributors may be used to endorse or promote products derived 17 | * from this software without specific prior written permission. 18 | * 19 | * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND 20 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE 23 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 24 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 25 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 26 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 28 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29 | * SUCH DAMAGE. 30 | */ 31 | 32 | /* 33 | * $Id: feeddriver.h,v 1.1 2007/01/18 09:15:01 hoa Exp $ 34 | */ 35 | 36 | #ifndef FEEDDRIVER_H 37 | 38 | #define FEEDDRIVER_H 39 | 40 | #include 41 | 42 | #ifdef __cplusplus 43 | extern "C" { 44 | #endif 45 | 46 | extern mailsession_driver * feed_session_driver; 47 | 48 | #ifdef __cplusplus 49 | } 50 | #endif 51 | 52 | #endif 53 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V6-4.3/include/libetpan/imapdriver.h: -------------------------------------------------------------------------------- 1 | /* 2 | * libEtPan! -- a mail stuff library 3 | * 4 | * Copyright (C) 2001, 2005 - DINH Viet Hoa 5 | * All rights reserved. 6 | * 7 | * Redistribution and use in source and binary forms, with or without 8 | * modification, are permitted provided that the following conditions 9 | * are met: 10 | * 1. Redistributions of source code must retain the above copyright 11 | * notice, this list of conditions and the following disclaimer. 12 | * 2. Redistributions in binary form must reproduce the above copyright 13 | * notice, this list of conditions and the following disclaimer in the 14 | * documentation and/or other materials provided with the distribution. 15 | * 3. Neither the name of the libEtPan! project nor the names of its 16 | * contributors may be used to endorse or promote products derived 17 | * from this software without specific prior written permission. 18 | * 19 | * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND 20 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE 23 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 24 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 25 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 26 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 28 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29 | * SUCH DAMAGE. 30 | */ 31 | 32 | /* 33 | * $Id: imapdriver.h,v 1.12 2004/11/21 21:53:32 hoa Exp $ 34 | */ 35 | 36 | #ifndef IMAPDRIVER_H 37 | 38 | #define IMAPDRIVER_H 39 | 40 | #ifdef __cplusplus 41 | extern "C" { 42 | #endif 43 | 44 | #include 45 | 46 | extern mailsession_driver * imap_session_driver; 47 | 48 | #ifdef __cplusplus 49 | } 50 | #endif 51 | 52 | #endif 53 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V6-4.3/include/libetpan/mboxdriver.h: -------------------------------------------------------------------------------- 1 | /* 2 | * libEtPan! -- a mail stuff library 3 | * 4 | * Copyright (C) 2001, 2005 - DINH Viet Hoa 5 | * All rights reserved. 6 | * 7 | * Redistribution and use in source and binary forms, with or without 8 | * modification, are permitted provided that the following conditions 9 | * are met: 10 | * 1. Redistributions of source code must retain the above copyright 11 | * notice, this list of conditions and the following disclaimer. 12 | * 2. Redistributions in binary form must reproduce the above copyright 13 | * notice, this list of conditions and the following disclaimer in the 14 | * documentation and/or other materials provided with the distribution. 15 | * 3. Neither the name of the libEtPan! project nor the names of its 16 | * contributors may be used to endorse or promote products derived 17 | * from this software without specific prior written permission. 18 | * 19 | * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND 20 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE 23 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 24 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 25 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 26 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 28 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29 | * SUCH DAMAGE. 30 | */ 31 | 32 | /* 33 | * $Id: mboxdriver.h,v 1.14 2004/11/21 21:53:32 hoa Exp $ 34 | */ 35 | 36 | #ifndef MBOXDRIVER_H 37 | 38 | #define MBOXDRIVER_H 39 | 40 | #ifdef __cplusplus 41 | extern "C" { 42 | #endif 43 | 44 | #include 45 | 46 | extern mailsession_driver * mbox_session_driver; 47 | 48 | #ifdef __cplusplus 49 | } 50 | #endif 51 | 52 | #endif 53 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V6-4.3/include/libetpan/nntpdriver.h: -------------------------------------------------------------------------------- 1 | /* 2 | * libEtPan! -- a mail stuff library 3 | * 4 | * Copyright (C) 2001, 2005 - DINH Viet Hoa 5 | * All rights reserved. 6 | * 7 | * Redistribution and use in source and binary forms, with or without 8 | * modification, are permitted provided that the following conditions 9 | * are met: 10 | * 1. Redistributions of source code must retain the above copyright 11 | * notice, this list of conditions and the following disclaimer. 12 | * 2. Redistributions in binary form must reproduce the above copyright 13 | * notice, this list of conditions and the following disclaimer in the 14 | * documentation and/or other materials provided with the distribution. 15 | * 3. Neither the name of the libEtPan! project nor the names of its 16 | * contributors may be used to endorse or promote products derived 17 | * from this software without specific prior written permission. 18 | * 19 | * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND 20 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE 23 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 24 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 25 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 26 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 28 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29 | * SUCH DAMAGE. 30 | */ 31 | 32 | /* 33 | * $Id: nntpdriver.h,v 1.16 2004/11/21 21:53:33 hoa Exp $ 34 | */ 35 | 36 | #ifndef NNTPDRIVER_H 37 | 38 | #define NNTPDRIVER_H 39 | 40 | #include 41 | 42 | #ifdef __cplusplus 43 | extern "C" { 44 | #endif 45 | 46 | extern mailsession_driver * nntp_session_driver; 47 | 48 | #ifdef __cplusplus 49 | } 50 | #endif 51 | 52 | #endif 53 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V6-4.3/include/libetpan/pop3driver.h: -------------------------------------------------------------------------------- 1 | /* 2 | * libEtPan! -- a mail stuff library 3 | * 4 | * Copyright (C) 2001, 2005 - DINH Viet Hoa 5 | * All rights reserved. 6 | * 7 | * Redistribution and use in source and binary forms, with or without 8 | * modification, are permitted provided that the following conditions 9 | * are met: 10 | * 1. Redistributions of source code must retain the above copyright 11 | * notice, this list of conditions and the following disclaimer. 12 | * 2. Redistributions in binary form must reproduce the above copyright 13 | * notice, this list of conditions and the following disclaimer in the 14 | * documentation and/or other materials provided with the distribution. 15 | * 3. Neither the name of the libEtPan! project nor the names of its 16 | * contributors may be used to endorse or promote products derived 17 | * from this software without specific prior written permission. 18 | * 19 | * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND 20 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE 23 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 24 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 25 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 26 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 28 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29 | * SUCH DAMAGE. 30 | */ 31 | 32 | /* 33 | * $Id: pop3driver.h,v 1.15 2004/11/21 21:53:34 hoa Exp $ 34 | */ 35 | 36 | #ifndef POP3DRIVER_H 37 | 38 | #define POP3DRIVER_H 39 | 40 | #include 41 | 42 | #ifdef __cplusplus 43 | extern "C" { 44 | #endif 45 | 46 | extern mailsession_driver * pop3_session_driver; 47 | 48 | #ifdef __cplusplus 49 | } 50 | #endif 51 | 52 | #endif 53 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V7-4.3/include/libetpan/feeddriver.h: -------------------------------------------------------------------------------- 1 | /* 2 | * libEtPan! -- a mail stuff library 3 | * 4 | * Copyright (C) 2001, 2005 - DINH Viet Hoa 5 | * All rights reserved. 6 | * 7 | * Redistribution and use in source and binary forms, with or without 8 | * modification, are permitted provided that the following conditions 9 | * are met: 10 | * 1. Redistributions of source code must retain the above copyright 11 | * notice, this list of conditions and the following disclaimer. 12 | * 2. Redistributions in binary form must reproduce the above copyright 13 | * notice, this list of conditions and the following disclaimer in the 14 | * documentation and/or other materials provided with the distribution. 15 | * 3. Neither the name of the libEtPan! project nor the names of its 16 | * contributors may be used to endorse or promote products derived 17 | * from this software without specific prior written permission. 18 | * 19 | * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND 20 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE 23 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 24 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 25 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 26 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 28 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29 | * SUCH DAMAGE. 30 | */ 31 | 32 | /* 33 | * $Id: feeddriver.h,v 1.1 2007/01/18 09:15:01 hoa Exp $ 34 | */ 35 | 36 | #ifndef FEEDDRIVER_H 37 | 38 | #define FEEDDRIVER_H 39 | 40 | #include 41 | 42 | #ifdef __cplusplus 43 | extern "C" { 44 | #endif 45 | 46 | extern mailsession_driver * feed_session_driver; 47 | 48 | #ifdef __cplusplus 49 | } 50 | #endif 51 | 52 | #endif 53 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V7-4.3/include/libetpan/imapdriver.h: -------------------------------------------------------------------------------- 1 | /* 2 | * libEtPan! -- a mail stuff library 3 | * 4 | * Copyright (C) 2001, 2005 - DINH Viet Hoa 5 | * All rights reserved. 6 | * 7 | * Redistribution and use in source and binary forms, with or without 8 | * modification, are permitted provided that the following conditions 9 | * are met: 10 | * 1. Redistributions of source code must retain the above copyright 11 | * notice, this list of conditions and the following disclaimer. 12 | * 2. Redistributions in binary form must reproduce the above copyright 13 | * notice, this list of conditions and the following disclaimer in the 14 | * documentation and/or other materials provided with the distribution. 15 | * 3. Neither the name of the libEtPan! project nor the names of its 16 | * contributors may be used to endorse or promote products derived 17 | * from this software without specific prior written permission. 18 | * 19 | * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND 20 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE 23 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 24 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 25 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 26 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 28 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29 | * SUCH DAMAGE. 30 | */ 31 | 32 | /* 33 | * $Id: imapdriver.h,v 1.12 2004/11/21 21:53:32 hoa Exp $ 34 | */ 35 | 36 | #ifndef IMAPDRIVER_H 37 | 38 | #define IMAPDRIVER_H 39 | 40 | #ifdef __cplusplus 41 | extern "C" { 42 | #endif 43 | 44 | #include 45 | 46 | extern mailsession_driver * imap_session_driver; 47 | 48 | #ifdef __cplusplus 49 | } 50 | #endif 51 | 52 | #endif 53 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V7-4.3/include/libetpan/mboxdriver.h: -------------------------------------------------------------------------------- 1 | /* 2 | * libEtPan! -- a mail stuff library 3 | * 4 | * Copyright (C) 2001, 2005 - DINH Viet Hoa 5 | * All rights reserved. 6 | * 7 | * Redistribution and use in source and binary forms, with or without 8 | * modification, are permitted provided that the following conditions 9 | * are met: 10 | * 1. Redistributions of source code must retain the above copyright 11 | * notice, this list of conditions and the following disclaimer. 12 | * 2. Redistributions in binary form must reproduce the above copyright 13 | * notice, this list of conditions and the following disclaimer in the 14 | * documentation and/or other materials provided with the distribution. 15 | * 3. Neither the name of the libEtPan! project nor the names of its 16 | * contributors may be used to endorse or promote products derived 17 | * from this software without specific prior written permission. 18 | * 19 | * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND 20 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE 23 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 24 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 25 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 26 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 28 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29 | * SUCH DAMAGE. 30 | */ 31 | 32 | /* 33 | * $Id: mboxdriver.h,v 1.14 2004/11/21 21:53:32 hoa Exp $ 34 | */ 35 | 36 | #ifndef MBOXDRIVER_H 37 | 38 | #define MBOXDRIVER_H 39 | 40 | #ifdef __cplusplus 41 | extern "C" { 42 | #endif 43 | 44 | #include 45 | 46 | extern mailsession_driver * mbox_session_driver; 47 | 48 | #ifdef __cplusplus 49 | } 50 | #endif 51 | 52 | #endif 53 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V7-4.3/include/libetpan/nntpdriver.h: -------------------------------------------------------------------------------- 1 | /* 2 | * libEtPan! -- a mail stuff library 3 | * 4 | * Copyright (C) 2001, 2005 - DINH Viet Hoa 5 | * All rights reserved. 6 | * 7 | * Redistribution and use in source and binary forms, with or without 8 | * modification, are permitted provided that the following conditions 9 | * are met: 10 | * 1. Redistributions of source code must retain the above copyright 11 | * notice, this list of conditions and the following disclaimer. 12 | * 2. Redistributions in binary form must reproduce the above copyright 13 | * notice, this list of conditions and the following disclaimer in the 14 | * documentation and/or other materials provided with the distribution. 15 | * 3. Neither the name of the libEtPan! project nor the names of its 16 | * contributors may be used to endorse or promote products derived 17 | * from this software without specific prior written permission. 18 | * 19 | * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND 20 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE 23 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 24 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 25 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 26 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 28 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29 | * SUCH DAMAGE. 30 | */ 31 | 32 | /* 33 | * $Id: nntpdriver.h,v 1.16 2004/11/21 21:53:33 hoa Exp $ 34 | */ 35 | 36 | #ifndef NNTPDRIVER_H 37 | 38 | #define NNTPDRIVER_H 39 | 40 | #include 41 | 42 | #ifdef __cplusplus 43 | extern "C" { 44 | #endif 45 | 46 | extern mailsession_driver * nntp_session_driver; 47 | 48 | #ifdef __cplusplus 49 | } 50 | #endif 51 | 52 | #endif 53 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V7-4.3/include/libetpan/pop3driver.h: -------------------------------------------------------------------------------- 1 | /* 2 | * libEtPan! -- a mail stuff library 3 | * 4 | * Copyright (C) 2001, 2005 - DINH Viet Hoa 5 | * All rights reserved. 6 | * 7 | * Redistribution and use in source and binary forms, with or without 8 | * modification, are permitted provided that the following conditions 9 | * are met: 10 | * 1. Redistributions of source code must retain the above copyright 11 | * notice, this list of conditions and the following disclaimer. 12 | * 2. Redistributions in binary form must reproduce the above copyright 13 | * notice, this list of conditions and the following disclaimer in the 14 | * documentation and/or other materials provided with the distribution. 15 | * 3. Neither the name of the libEtPan! project nor the names of its 16 | * contributors may be used to endorse or promote products derived 17 | * from this software without specific prior written permission. 18 | * 19 | * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND 20 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE 23 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 24 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 25 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 26 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 28 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29 | * SUCH DAMAGE. 30 | */ 31 | 32 | /* 33 | * $Id: pop3driver.h,v 1.15 2004/11/21 21:53:34 hoa Exp $ 34 | */ 35 | 36 | #ifndef POP3DRIVER_H 37 | 38 | #define POP3DRIVER_H 39 | 40 | #include 41 | 42 | #ifdef __cplusplus 43 | extern "C" { 44 | #endif 45 | 46 | extern mailsession_driver * pop3_session_driver; 47 | 48 | #ifdef __cplusplus 49 | } 50 | #endif 51 | 52 | #endif 53 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneSimulator-4.3/include/libetpan/feeddriver.h: -------------------------------------------------------------------------------- 1 | /* 2 | * libEtPan! -- a mail stuff library 3 | * 4 | * Copyright (C) 2001, 2005 - DINH Viet Hoa 5 | * All rights reserved. 6 | * 7 | * Redistribution and use in source and binary forms, with or without 8 | * modification, are permitted provided that the following conditions 9 | * are met: 10 | * 1. Redistributions of source code must retain the above copyright 11 | * notice, this list of conditions and the following disclaimer. 12 | * 2. Redistributions in binary form must reproduce the above copyright 13 | * notice, this list of conditions and the following disclaimer in the 14 | * documentation and/or other materials provided with the distribution. 15 | * 3. Neither the name of the libEtPan! project nor the names of its 16 | * contributors may be used to endorse or promote products derived 17 | * from this software without specific prior written permission. 18 | * 19 | * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND 20 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE 23 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 24 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 25 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 26 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 28 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29 | * SUCH DAMAGE. 30 | */ 31 | 32 | /* 33 | * $Id: feeddriver.h,v 1.1 2007/01/18 09:15:01 hoa Exp $ 34 | */ 35 | 36 | #ifndef FEEDDRIVER_H 37 | 38 | #define FEEDDRIVER_H 39 | 40 | #include 41 | 42 | #ifdef __cplusplus 43 | extern "C" { 44 | #endif 45 | 46 | extern mailsession_driver * feed_session_driver; 47 | 48 | #ifdef __cplusplus 49 | } 50 | #endif 51 | 52 | #endif 53 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneSimulator-4.3/include/libetpan/imapdriver.h: -------------------------------------------------------------------------------- 1 | /* 2 | * libEtPan! -- a mail stuff library 3 | * 4 | * Copyright (C) 2001, 2005 - DINH Viet Hoa 5 | * All rights reserved. 6 | * 7 | * Redistribution and use in source and binary forms, with or without 8 | * modification, are permitted provided that the following conditions 9 | * are met: 10 | * 1. Redistributions of source code must retain the above copyright 11 | * notice, this list of conditions and the following disclaimer. 12 | * 2. Redistributions in binary form must reproduce the above copyright 13 | * notice, this list of conditions and the following disclaimer in the 14 | * documentation and/or other materials provided with the distribution. 15 | * 3. Neither the name of the libEtPan! project nor the names of its 16 | * contributors may be used to endorse or promote products derived 17 | * from this software without specific prior written permission. 18 | * 19 | * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND 20 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE 23 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 24 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 25 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 26 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 28 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29 | * SUCH DAMAGE. 30 | */ 31 | 32 | /* 33 | * $Id: imapdriver.h,v 1.12 2004/11/21 21:53:32 hoa Exp $ 34 | */ 35 | 36 | #ifndef IMAPDRIVER_H 37 | 38 | #define IMAPDRIVER_H 39 | 40 | #ifdef __cplusplus 41 | extern "C" { 42 | #endif 43 | 44 | #include 45 | 46 | extern mailsession_driver * imap_session_driver; 47 | 48 | #ifdef __cplusplus 49 | } 50 | #endif 51 | 52 | #endif 53 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneSimulator-4.3/include/libetpan/mboxdriver.h: -------------------------------------------------------------------------------- 1 | /* 2 | * libEtPan! -- a mail stuff library 3 | * 4 | * Copyright (C) 2001, 2005 - DINH Viet Hoa 5 | * All rights reserved. 6 | * 7 | * Redistribution and use in source and binary forms, with or without 8 | * modification, are permitted provided that the following conditions 9 | * are met: 10 | * 1. Redistributions of source code must retain the above copyright 11 | * notice, this list of conditions and the following disclaimer. 12 | * 2. Redistributions in binary form must reproduce the above copyright 13 | * notice, this list of conditions and the following disclaimer in the 14 | * documentation and/or other materials provided with the distribution. 15 | * 3. Neither the name of the libEtPan! project nor the names of its 16 | * contributors may be used to endorse or promote products derived 17 | * from this software without specific prior written permission. 18 | * 19 | * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND 20 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE 23 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 24 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 25 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 26 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 28 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29 | * SUCH DAMAGE. 30 | */ 31 | 32 | /* 33 | * $Id: mboxdriver.h,v 1.14 2004/11/21 21:53:32 hoa Exp $ 34 | */ 35 | 36 | #ifndef MBOXDRIVER_H 37 | 38 | #define MBOXDRIVER_H 39 | 40 | #ifdef __cplusplus 41 | extern "C" { 42 | #endif 43 | 44 | #include 45 | 46 | extern mailsession_driver * mbox_session_driver; 47 | 48 | #ifdef __cplusplus 49 | } 50 | #endif 51 | 52 | #endif 53 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneSimulator-4.3/include/libetpan/nntpdriver.h: -------------------------------------------------------------------------------- 1 | /* 2 | * libEtPan! -- a mail stuff library 3 | * 4 | * Copyright (C) 2001, 2005 - DINH Viet Hoa 5 | * All rights reserved. 6 | * 7 | * Redistribution and use in source and binary forms, with or without 8 | * modification, are permitted provided that the following conditions 9 | * are met: 10 | * 1. Redistributions of source code must retain the above copyright 11 | * notice, this list of conditions and the following disclaimer. 12 | * 2. Redistributions in binary form must reproduce the above copyright 13 | * notice, this list of conditions and the following disclaimer in the 14 | * documentation and/or other materials provided with the distribution. 15 | * 3. Neither the name of the libEtPan! project nor the names of its 16 | * contributors may be used to endorse or promote products derived 17 | * from this software without specific prior written permission. 18 | * 19 | * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND 20 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE 23 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 24 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 25 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 26 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 28 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29 | * SUCH DAMAGE. 30 | */ 31 | 32 | /* 33 | * $Id: nntpdriver.h,v 1.16 2004/11/21 21:53:33 hoa Exp $ 34 | */ 35 | 36 | #ifndef NNTPDRIVER_H 37 | 38 | #define NNTPDRIVER_H 39 | 40 | #include 41 | 42 | #ifdef __cplusplus 43 | extern "C" { 44 | #endif 45 | 46 | extern mailsession_driver * nntp_session_driver; 47 | 48 | #ifdef __cplusplus 49 | } 50 | #endif 51 | 52 | #endif 53 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneSimulator-4.3/include/libetpan/pop3driver.h: -------------------------------------------------------------------------------- 1 | /* 2 | * libEtPan! -- a mail stuff library 3 | * 4 | * Copyright (C) 2001, 2005 - DINH Viet Hoa 5 | * All rights reserved. 6 | * 7 | * Redistribution and use in source and binary forms, with or without 8 | * modification, are permitted provided that the following conditions 9 | * are met: 10 | * 1. Redistributions of source code must retain the above copyright 11 | * notice, this list of conditions and the following disclaimer. 12 | * 2. Redistributions in binary form must reproduce the above copyright 13 | * notice, this list of conditions and the following disclaimer in the 14 | * documentation and/or other materials provided with the distribution. 15 | * 3. Neither the name of the libEtPan! project nor the names of its 16 | * contributors may be used to endorse or promote products derived 17 | * from this software without specific prior written permission. 18 | * 19 | * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND 20 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE 23 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 24 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 25 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 26 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 28 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29 | * SUCH DAMAGE. 30 | */ 31 | 32 | /* 33 | * $Id: pop3driver.h,v 1.15 2004/11/21 21:53:34 hoa Exp $ 34 | */ 35 | 36 | #ifndef POP3DRIVER_H 37 | 38 | #define POP3DRIVER_H 39 | 40 | #include 41 | 42 | #ifdef __cplusplus 43 | extern "C" { 44 | #endif 45 | 46 | extern mailsession_driver * pop3_session_driver; 47 | 48 | #ifdef __cplusplus 49 | } 50 | #endif 51 | 52 | #endif 53 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V6-4.3/include/libetpan/dbdriver_message.h: -------------------------------------------------------------------------------- 1 | /* 2 | * libEtPan! -- a mail stuff library 3 | * 4 | * Copyright (C) 2001, 2005 - DINH Viet Hoa 5 | * All rights reserved. 6 | * 7 | * Redistribution and use in source and binary forms, with or without 8 | * modification, are permitted provided that the following conditions 9 | * are met: 10 | * 1. Redistributions of source code must retain the above copyright 11 | * notice, this list of conditions and the following disclaimer. 12 | * 2. Redistributions in binary form must reproduce the above copyright 13 | * notice, this list of conditions and the following disclaimer in the 14 | * documentation and/or other materials provided with the distribution. 15 | * 3. Neither the name of the libEtPan! project nor the names of its 16 | * contributors may be used to endorse or promote products derived 17 | * from this software without specific prior written permission. 18 | * 19 | * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND 20 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE 23 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 24 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 25 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 26 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 28 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29 | * SUCH DAMAGE. 30 | */ 31 | 32 | /* 33 | * $Id: dbdriver_message.h,v 1.2 2004/11/21 21:53:31 hoa Exp $ 34 | */ 35 | 36 | #ifndef DBDRIVER_MESSAGE_H 37 | 38 | #define DBDRIVER_MESSAGE_H 39 | 40 | #include 41 | 42 | #ifdef __cplusplus 43 | extern "C" { 44 | #endif 45 | 46 | extern mailmessage_driver * db_message_driver; 47 | 48 | #ifdef __cplusplus 49 | } 50 | #endif 51 | 52 | #endif 53 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V6-4.3/include/libetpan/mhdriver_cached.h: -------------------------------------------------------------------------------- 1 | /* 2 | * libEtPan! -- a mail stuff library 3 | * 4 | * Copyright (C) 2001, 2005 - DINH Viet Hoa 5 | * All rights reserved. 6 | * 7 | * Redistribution and use in source and binary forms, with or without 8 | * modification, are permitted provided that the following conditions 9 | * are met: 10 | * 1. Redistributions of source code must retain the above copyright 11 | * notice, this list of conditions and the following disclaimer. 12 | * 2. Redistributions in binary form must reproduce the above copyright 13 | * notice, this list of conditions and the following disclaimer in the 14 | * documentation and/or other materials provided with the distribution. 15 | * 3. Neither the name of the libEtPan! project nor the names of its 16 | * contributors may be used to endorse or promote products derived 17 | * from this software without specific prior written permission. 18 | * 19 | * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND 20 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE 23 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 24 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 25 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 26 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 28 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29 | * SUCH DAMAGE. 30 | */ 31 | 32 | /* 33 | * $Id: mhdriver_cached.h,v 1.10 2004/11/21 21:53:33 hoa Exp $ 34 | */ 35 | 36 | #ifndef MHDRIVER_CACHED_H 37 | 38 | #define MHDRIVER_CACHED_H 39 | 40 | #include 41 | 42 | #ifdef __cplusplus 43 | extern "C" { 44 | #endif 45 | 46 | extern mailsession_driver * mh_cached_session_driver; 47 | 48 | #ifdef __cplusplus 49 | } 50 | #endif 51 | 52 | #endif 53 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V6-4.3/include/libetpan/mhdriver_message.h: -------------------------------------------------------------------------------- 1 | /* 2 | * libEtPan! -- a mail stuff library 3 | * 4 | * Copyright (C) 2001, 2005 - DINH Viet Hoa 5 | * All rights reserved. 6 | * 7 | * Redistribution and use in source and binary forms, with or without 8 | * modification, are permitted provided that the following conditions 9 | * are met: 10 | * 1. Redistributions of source code must retain the above copyright 11 | * notice, this list of conditions and the following disclaimer. 12 | * 2. Redistributions in binary form must reproduce the above copyright 13 | * notice, this list of conditions and the following disclaimer in the 14 | * documentation and/or other materials provided with the distribution. 15 | * 3. Neither the name of the libEtPan! project nor the names of its 16 | * contributors may be used to endorse or promote products derived 17 | * from this software without specific prior written permission. 18 | * 19 | * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND 20 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE 23 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 24 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 25 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 26 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 28 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29 | * SUCH DAMAGE. 30 | */ 31 | 32 | /* 33 | * $Id: mhdriver_message.h,v 1.6 2004/11/21 21:53:33 hoa Exp $ 34 | */ 35 | 36 | #ifndef MHDRIVER_MESSAGE_H 37 | 38 | #define MHDRIVER_MESSAGE_H 39 | 40 | #include 41 | 42 | #ifdef __cplusplus 43 | extern "C" { 44 | #endif 45 | 46 | extern mailmessage_driver * mh_message_driver; 47 | 48 | #ifdef __cplusplus 49 | } 50 | #endif 51 | 52 | #endif 53 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V7-4.3/include/libetpan/dbdriver_message.h: -------------------------------------------------------------------------------- 1 | /* 2 | * libEtPan! -- a mail stuff library 3 | * 4 | * Copyright (C) 2001, 2005 - DINH Viet Hoa 5 | * All rights reserved. 6 | * 7 | * Redistribution and use in source and binary forms, with or without 8 | * modification, are permitted provided that the following conditions 9 | * are met: 10 | * 1. Redistributions of source code must retain the above copyright 11 | * notice, this list of conditions and the following disclaimer. 12 | * 2. Redistributions in binary form must reproduce the above copyright 13 | * notice, this list of conditions and the following disclaimer in the 14 | * documentation and/or other materials provided with the distribution. 15 | * 3. Neither the name of the libEtPan! project nor the names of its 16 | * contributors may be used to endorse or promote products derived 17 | * from this software without specific prior written permission. 18 | * 19 | * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND 20 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE 23 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 24 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 25 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 26 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 28 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29 | * SUCH DAMAGE. 30 | */ 31 | 32 | /* 33 | * $Id: dbdriver_message.h,v 1.2 2004/11/21 21:53:31 hoa Exp $ 34 | */ 35 | 36 | #ifndef DBDRIVER_MESSAGE_H 37 | 38 | #define DBDRIVER_MESSAGE_H 39 | 40 | #include 41 | 42 | #ifdef __cplusplus 43 | extern "C" { 44 | #endif 45 | 46 | extern mailmessage_driver * db_message_driver; 47 | 48 | #ifdef __cplusplus 49 | } 50 | #endif 51 | 52 | #endif 53 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V7-4.3/include/libetpan/mhdriver_cached.h: -------------------------------------------------------------------------------- 1 | /* 2 | * libEtPan! -- a mail stuff library 3 | * 4 | * Copyright (C) 2001, 2005 - DINH Viet Hoa 5 | * All rights reserved. 6 | * 7 | * Redistribution and use in source and binary forms, with or without 8 | * modification, are permitted provided that the following conditions 9 | * are met: 10 | * 1. Redistributions of source code must retain the above copyright 11 | * notice, this list of conditions and the following disclaimer. 12 | * 2. Redistributions in binary form must reproduce the above copyright 13 | * notice, this list of conditions and the following disclaimer in the 14 | * documentation and/or other materials provided with the distribution. 15 | * 3. Neither the name of the libEtPan! project nor the names of its 16 | * contributors may be used to endorse or promote products derived 17 | * from this software without specific prior written permission. 18 | * 19 | * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND 20 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE 23 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 24 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 25 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 26 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 28 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29 | * SUCH DAMAGE. 30 | */ 31 | 32 | /* 33 | * $Id: mhdriver_cached.h,v 1.10 2004/11/21 21:53:33 hoa Exp $ 34 | */ 35 | 36 | #ifndef MHDRIVER_CACHED_H 37 | 38 | #define MHDRIVER_CACHED_H 39 | 40 | #include 41 | 42 | #ifdef __cplusplus 43 | extern "C" { 44 | #endif 45 | 46 | extern mailsession_driver * mh_cached_session_driver; 47 | 48 | #ifdef __cplusplus 49 | } 50 | #endif 51 | 52 | #endif 53 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V7-4.3/include/libetpan/mhdriver_message.h: -------------------------------------------------------------------------------- 1 | /* 2 | * libEtPan! -- a mail stuff library 3 | * 4 | * Copyright (C) 2001, 2005 - DINH Viet Hoa 5 | * All rights reserved. 6 | * 7 | * Redistribution and use in source and binary forms, with or without 8 | * modification, are permitted provided that the following conditions 9 | * are met: 10 | * 1. Redistributions of source code must retain the above copyright 11 | * notice, this list of conditions and the following disclaimer. 12 | * 2. Redistributions in binary form must reproduce the above copyright 13 | * notice, this list of conditions and the following disclaimer in the 14 | * documentation and/or other materials provided with the distribution. 15 | * 3. Neither the name of the libEtPan! project nor the names of its 16 | * contributors may be used to endorse or promote products derived 17 | * from this software without specific prior written permission. 18 | * 19 | * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND 20 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE 23 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 24 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 25 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 26 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 28 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29 | * SUCH DAMAGE. 30 | */ 31 | 32 | /* 33 | * $Id: mhdriver_message.h,v 1.6 2004/11/21 21:53:33 hoa Exp $ 34 | */ 35 | 36 | #ifndef MHDRIVER_MESSAGE_H 37 | 38 | #define MHDRIVER_MESSAGE_H 39 | 40 | #include 41 | 42 | #ifdef __cplusplus 43 | extern "C" { 44 | #endif 45 | 46 | extern mailmessage_driver * mh_message_driver; 47 | 48 | #ifdef __cplusplus 49 | } 50 | #endif 51 | 52 | #endif 53 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneSimulator-4.3/include/libetpan/dbdriver_message.h: -------------------------------------------------------------------------------- 1 | /* 2 | * libEtPan! -- a mail stuff library 3 | * 4 | * Copyright (C) 2001, 2005 - DINH Viet Hoa 5 | * All rights reserved. 6 | * 7 | * Redistribution and use in source and binary forms, with or without 8 | * modification, are permitted provided that the following conditions 9 | * are met: 10 | * 1. Redistributions of source code must retain the above copyright 11 | * notice, this list of conditions and the following disclaimer. 12 | * 2. Redistributions in binary form must reproduce the above copyright 13 | * notice, this list of conditions and the following disclaimer in the 14 | * documentation and/or other materials provided with the distribution. 15 | * 3. Neither the name of the libEtPan! project nor the names of its 16 | * contributors may be used to endorse or promote products derived 17 | * from this software without specific prior written permission. 18 | * 19 | * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND 20 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE 23 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 24 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 25 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 26 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 28 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29 | * SUCH DAMAGE. 30 | */ 31 | 32 | /* 33 | * $Id: dbdriver_message.h,v 1.2 2004/11/21 21:53:31 hoa Exp $ 34 | */ 35 | 36 | #ifndef DBDRIVER_MESSAGE_H 37 | 38 | #define DBDRIVER_MESSAGE_H 39 | 40 | #include 41 | 42 | #ifdef __cplusplus 43 | extern "C" { 44 | #endif 45 | 46 | extern mailmessage_driver * db_message_driver; 47 | 48 | #ifdef __cplusplus 49 | } 50 | #endif 51 | 52 | #endif 53 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneSimulator-4.3/include/libetpan/mhdriver_message.h: -------------------------------------------------------------------------------- 1 | /* 2 | * libEtPan! -- a mail stuff library 3 | * 4 | * Copyright (C) 2001, 2005 - DINH Viet Hoa 5 | * All rights reserved. 6 | * 7 | * Redistribution and use in source and binary forms, with or without 8 | * modification, are permitted provided that the following conditions 9 | * are met: 10 | * 1. Redistributions of source code must retain the above copyright 11 | * notice, this list of conditions and the following disclaimer. 12 | * 2. Redistributions in binary form must reproduce the above copyright 13 | * notice, this list of conditions and the following disclaimer in the 14 | * documentation and/or other materials provided with the distribution. 15 | * 3. Neither the name of the libEtPan! project nor the names of its 16 | * contributors may be used to endorse or promote products derived 17 | * from this software without specific prior written permission. 18 | * 19 | * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND 20 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE 23 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 24 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 25 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 26 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 28 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29 | * SUCH DAMAGE. 30 | */ 31 | 32 | /* 33 | * $Id: mhdriver_message.h,v 1.6 2004/11/21 21:53:33 hoa Exp $ 34 | */ 35 | 36 | #ifndef MHDRIVER_MESSAGE_H 37 | 38 | #define MHDRIVER_MESSAGE_H 39 | 40 | #include 41 | 42 | #ifdef __cplusplus 43 | extern "C" { 44 | #endif 45 | 46 | extern mailmessage_driver * mh_message_driver; 47 | 48 | #ifdef __cplusplus 49 | } 50 | #endif 51 | 52 | #endif 53 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneSimulator-4.3/include/libetpan/mhdriver_cached.h: -------------------------------------------------------------------------------- 1 | /* 2 | * libEtPan! -- a mail stuff library 3 | * 4 | * Copyright (C) 2001, 2005 - DINH Viet Hoa 5 | * All rights reserved. 6 | * 7 | * Redistribution and use in source and binary forms, with or without 8 | * modification, are permitted provided that the following conditions 9 | * are met: 10 | * 1. Redistributions of source code must retain the above copyright 11 | * notice, this list of conditions and the following disclaimer. 12 | * 2. Redistributions in binary form must reproduce the above copyright 13 | * notice, this list of conditions and the following disclaimer in the 14 | * documentation and/or other materials provided with the distribution. 15 | * 3. Neither the name of the libEtPan! project nor the names of its 16 | * contributors may be used to endorse or promote products derived 17 | * from this software without specific prior written permission. 18 | * 19 | * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND 20 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE 23 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 24 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 25 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 26 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 28 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29 | * SUCH DAMAGE. 30 | */ 31 | 32 | /* 33 | * $Id: mhdriver_cached.h,v 1.10 2004/11/21 21:53:33 hoa Exp $ 34 | */ 35 | 36 | #ifndef MHDRIVER_CACHED_H 37 | 38 | #define MHDRIVER_CACHED_H 39 | 40 | #include 41 | 42 | #ifdef __cplusplus 43 | extern "C" { 44 | #endif 45 | 46 | extern mailsession_driver * mh_cached_session_driver; 47 | 48 | #ifdef __cplusplus 49 | } 50 | #endif 51 | 52 | #endif 53 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V6-4.3/include/libetpan/dbdriver.h: -------------------------------------------------------------------------------- 1 | /* 2 | * libEtPan! -- a mail stuff library 3 | * 4 | * Copyright (C) 2001, 2005 - DINH Viet Hoa 5 | * All rights reserved. 6 | * 7 | * Redistribution and use in source and binary forms, with or without 8 | * modification, are permitted provided that the following conditions 9 | * are met: 10 | * 1. Redistributions of source code must retain the above copyright 11 | * notice, this list of conditions and the following disclaimer. 12 | * 2. Redistributions in binary form must reproduce the above copyright 13 | * notice, this list of conditions and the following disclaimer in the 14 | * documentation and/or other materials provided with the distribution. 15 | * 3. Neither the name of the libEtPan! project nor the names of its 16 | * contributors may be used to endorse or promote products derived 17 | * from this software without specific prior written permission. 18 | * 19 | * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND 20 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE 23 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 24 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 25 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 26 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 28 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29 | * SUCH DAMAGE. 30 | */ 31 | 32 | /* 33 | * $Id: dbdriver.h,v 1.2 2004/11/21 21:53:31 hoa Exp $ 34 | */ 35 | 36 | #ifndef DBDRIVER_H 37 | 38 | #define DBDRIVER_H 39 | 40 | #include 41 | #include 42 | 43 | #ifdef __cplusplus 44 | extern "C" { 45 | #endif 46 | 47 | extern mailsession_driver * db_session_driver; 48 | 49 | #ifdef __cplusplus 50 | } 51 | #endif 52 | 53 | #endif 54 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V6-4.3/include/libetpan/feeddriver_message.h: -------------------------------------------------------------------------------- 1 | /* 2 | * libEtPan! -- a mail stuff library 3 | * 4 | * Copyright (C) 2001, 2005 - DINH Viet Hoa 5 | * All rights reserved. 6 | * 7 | * Redistribution and use in source and binary forms, with or without 8 | * modification, are permitted provided that the following conditions 9 | * are met: 10 | * 1. Redistributions of source code must retain the above copyright 11 | * notice, this list of conditions and the following disclaimer. 12 | * 2. Redistributions in binary form must reproduce the above copyright 13 | * notice, this list of conditions and the following disclaimer in the 14 | * documentation and/or other materials provided with the distribution. 15 | * 3. Neither the name of the libEtPan! project nor the names of its 16 | * contributors may be used to endorse or promote products derived 17 | * from this software without specific prior written permission. 18 | * 19 | * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND 20 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE 23 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 24 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 25 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 26 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 28 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29 | * SUCH DAMAGE. 30 | */ 31 | 32 | /* 33 | * $Id: feeddriver_message.h,v 1.1 2007/01/18 09:15:01 hoa Exp $ 34 | */ 35 | 36 | #ifndef FEEDDRIVER_MESSAGE_H 37 | 38 | #define FEEDDRIVER_MESSAGE_H 39 | 40 | #ifdef __cplusplus 41 | extern "C" { 42 | #endif 43 | 44 | #include 45 | 46 | extern mailmessage_driver * feed_message_driver; 47 | 48 | #ifdef __cplusplus 49 | } 50 | #endif 51 | 52 | #endif 53 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V6-4.3/include/libetpan/imapdriver_message.h: -------------------------------------------------------------------------------- 1 | /* 2 | * libEtPan! -- a mail stuff library 3 | * 4 | * Copyright (C) 2001, 2005 - DINH Viet Hoa 5 | * All rights reserved. 6 | * 7 | * Redistribution and use in source and binary forms, with or without 8 | * modification, are permitted provided that the following conditions 9 | * are met: 10 | * 1. Redistributions of source code must retain the above copyright 11 | * notice, this list of conditions and the following disclaimer. 12 | * 2. Redistributions in binary form must reproduce the above copyright 13 | * notice, this list of conditions and the following disclaimer in the 14 | * documentation and/or other materials provided with the distribution. 15 | * 3. Neither the name of the libEtPan! project nor the names of its 16 | * contributors may be used to endorse or promote products derived 17 | * from this software without specific prior written permission. 18 | * 19 | * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND 20 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE 23 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 24 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 25 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 26 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 28 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29 | * SUCH DAMAGE. 30 | */ 31 | 32 | /* 33 | * $Id: imapdriver_message.h,v 1.6 2004/11/21 21:53:32 hoa Exp $ 34 | */ 35 | 36 | #ifndef IMAPDRIVER_MESSAGE_H 37 | 38 | #define IMAPDRIVER_MESSAGE_H 39 | 40 | #include 41 | 42 | #ifdef __cplusplus 43 | extern "C" { 44 | #endif 45 | 46 | extern mailmessage_driver * imap_message_driver; 47 | 48 | #ifdef __cplusplus 49 | } 50 | #endif 51 | 52 | #endif 53 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V6-4.3/include/libetpan/mboxdriver_message.h: -------------------------------------------------------------------------------- 1 | /* 2 | * libEtPan! -- a mail stuff library 3 | * 4 | * Copyright (C) 2001, 2005 - DINH Viet Hoa 5 | * All rights reserved. 6 | * 7 | * Redistribution and use in source and binary forms, with or without 8 | * modification, are permitted provided that the following conditions 9 | * are met: 10 | * 1. Redistributions of source code must retain the above copyright 11 | * notice, this list of conditions and the following disclaimer. 12 | * 2. Redistributions in binary form must reproduce the above copyright 13 | * notice, this list of conditions and the following disclaimer in the 14 | * documentation and/or other materials provided with the distribution. 15 | * 3. Neither the name of the libEtPan! project nor the names of its 16 | * contributors may be used to endorse or promote products derived 17 | * from this software without specific prior written permission. 18 | * 19 | * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND 20 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE 23 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 24 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 25 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 26 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 28 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29 | * SUCH DAMAGE. 30 | */ 31 | 32 | /* 33 | * $Id: mboxdriver_message.h,v 1.6 2004/11/21 21:53:32 hoa Exp $ 34 | */ 35 | 36 | #ifndef MBOXDRIVER_MESSAGE_H 37 | 38 | #define MBOXDRIVER_MESSAGE_H 39 | 40 | #include 41 | 42 | #ifdef __cplusplus 43 | extern "C" { 44 | #endif 45 | 46 | extern mailmessage_driver * mbox_message_driver; 47 | 48 | #ifdef __cplusplus 49 | } 50 | #endif 51 | 52 | #endif 53 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V6-4.3/include/libetpan/nntpdriver_message.h: -------------------------------------------------------------------------------- 1 | /* 2 | * libEtPan! -- a mail stuff library 3 | * 4 | * Copyright (C) 2001, 2005 - DINH Viet Hoa 5 | * All rights reserved. 6 | * 7 | * Redistribution and use in source and binary forms, with or without 8 | * modification, are permitted provided that the following conditions 9 | * are met: 10 | * 1. Redistributions of source code must retain the above copyright 11 | * notice, this list of conditions and the following disclaimer. 12 | * 2. Redistributions in binary form must reproduce the above copyright 13 | * notice, this list of conditions and the following disclaimer in the 14 | * documentation and/or other materials provided with the distribution. 15 | * 3. Neither the name of the libEtPan! project nor the names of its 16 | * contributors may be used to endorse or promote products derived 17 | * from this software without specific prior written permission. 18 | * 19 | * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND 20 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE 23 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 24 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 25 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 26 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 28 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29 | * SUCH DAMAGE. 30 | */ 31 | 32 | /* 33 | * $Id: nntpdriver_message.h,v 1.6 2004/11/21 21:53:33 hoa Exp $ 34 | */ 35 | 36 | #ifndef NNTPDRIVER_MESSAGE_H 37 | 38 | #define NNTPDRIVER_MESSAGE_H 39 | 40 | #ifdef __cplusplus 41 | extern "C" { 42 | #endif 43 | 44 | #include 45 | 46 | extern mailmessage_driver * nntp_message_driver; 47 | 48 | #ifdef __cplusplus 49 | } 50 | #endif 51 | 52 | #endif 53 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V6-4.3/include/libetpan/pop3driver_message.h: -------------------------------------------------------------------------------- 1 | /* 2 | * libEtPan! -- a mail stuff library 3 | * 4 | * Copyright (C) 2001, 2005 - DINH Viet Hoa 5 | * All rights reserved. 6 | * 7 | * Redistribution and use in source and binary forms, with or without 8 | * modification, are permitted provided that the following conditions 9 | * are met: 10 | * 1. Redistributions of source code must retain the above copyright 11 | * notice, this list of conditions and the following disclaimer. 12 | * 2. Redistributions in binary form must reproduce the above copyright 13 | * notice, this list of conditions and the following disclaimer in the 14 | * documentation and/or other materials provided with the distribution. 15 | * 3. Neither the name of the libEtPan! project nor the names of its 16 | * contributors may be used to endorse or promote products derived 17 | * from this software without specific prior written permission. 18 | * 19 | * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND 20 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE 23 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 24 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 25 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 26 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 28 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29 | * SUCH DAMAGE. 30 | */ 31 | 32 | /* 33 | * $Id: pop3driver_message.h,v 1.6 2004/11/21 21:53:34 hoa Exp $ 34 | */ 35 | 36 | #ifndef POP3DRIVER_MESSAGE_H 37 | 38 | #define POP3DRIVER_MESSAGE_H 39 | 40 | #include 41 | 42 | #ifdef __cplusplus 43 | extern "C" { 44 | #endif 45 | 46 | extern mailmessage_driver * pop3_message_driver; 47 | 48 | #ifdef __cplusplus 49 | } 50 | #endif 51 | 52 | #endif 53 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V7-4.3/include/libetpan/dbdriver.h: -------------------------------------------------------------------------------- 1 | /* 2 | * libEtPan! -- a mail stuff library 3 | * 4 | * Copyright (C) 2001, 2005 - DINH Viet Hoa 5 | * All rights reserved. 6 | * 7 | * Redistribution and use in source and binary forms, with or without 8 | * modification, are permitted provided that the following conditions 9 | * are met: 10 | * 1. Redistributions of source code must retain the above copyright 11 | * notice, this list of conditions and the following disclaimer. 12 | * 2. Redistributions in binary form must reproduce the above copyright 13 | * notice, this list of conditions and the following disclaimer in the 14 | * documentation and/or other materials provided with the distribution. 15 | * 3. Neither the name of the libEtPan! project nor the names of its 16 | * contributors may be used to endorse or promote products derived 17 | * from this software without specific prior written permission. 18 | * 19 | * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND 20 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE 23 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 24 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 25 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 26 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 28 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29 | * SUCH DAMAGE. 30 | */ 31 | 32 | /* 33 | * $Id: dbdriver.h,v 1.2 2004/11/21 21:53:31 hoa Exp $ 34 | */ 35 | 36 | #ifndef DBDRIVER_H 37 | 38 | #define DBDRIVER_H 39 | 40 | #include 41 | #include 42 | 43 | #ifdef __cplusplus 44 | extern "C" { 45 | #endif 46 | 47 | extern mailsession_driver * db_session_driver; 48 | 49 | #ifdef __cplusplus 50 | } 51 | #endif 52 | 53 | #endif 54 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V7-4.3/include/libetpan/feeddriver_message.h: -------------------------------------------------------------------------------- 1 | /* 2 | * libEtPan! -- a mail stuff library 3 | * 4 | * Copyright (C) 2001, 2005 - DINH Viet Hoa 5 | * All rights reserved. 6 | * 7 | * Redistribution and use in source and binary forms, with or without 8 | * modification, are permitted provided that the following conditions 9 | * are met: 10 | * 1. Redistributions of source code must retain the above copyright 11 | * notice, this list of conditions and the following disclaimer. 12 | * 2. Redistributions in binary form must reproduce the above copyright 13 | * notice, this list of conditions and the following disclaimer in the 14 | * documentation and/or other materials provided with the distribution. 15 | * 3. Neither the name of the libEtPan! project nor the names of its 16 | * contributors may be used to endorse or promote products derived 17 | * from this software without specific prior written permission. 18 | * 19 | * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND 20 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE 23 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 24 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 25 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 26 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 28 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29 | * SUCH DAMAGE. 30 | */ 31 | 32 | /* 33 | * $Id: feeddriver_message.h,v 1.1 2007/01/18 09:15:01 hoa Exp $ 34 | */ 35 | 36 | #ifndef FEEDDRIVER_MESSAGE_H 37 | 38 | #define FEEDDRIVER_MESSAGE_H 39 | 40 | #ifdef __cplusplus 41 | extern "C" { 42 | #endif 43 | 44 | #include 45 | 46 | extern mailmessage_driver * feed_message_driver; 47 | 48 | #ifdef __cplusplus 49 | } 50 | #endif 51 | 52 | #endif 53 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V7-4.3/include/libetpan/imapdriver_message.h: -------------------------------------------------------------------------------- 1 | /* 2 | * libEtPan! -- a mail stuff library 3 | * 4 | * Copyright (C) 2001, 2005 - DINH Viet Hoa 5 | * All rights reserved. 6 | * 7 | * Redistribution and use in source and binary forms, with or without 8 | * modification, are permitted provided that the following conditions 9 | * are met: 10 | * 1. Redistributions of source code must retain the above copyright 11 | * notice, this list of conditions and the following disclaimer. 12 | * 2. Redistributions in binary form must reproduce the above copyright 13 | * notice, this list of conditions and the following disclaimer in the 14 | * documentation and/or other materials provided with the distribution. 15 | * 3. Neither the name of the libEtPan! project nor the names of its 16 | * contributors may be used to endorse or promote products derived 17 | * from this software without specific prior written permission. 18 | * 19 | * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND 20 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE 23 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 24 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 25 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 26 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 28 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29 | * SUCH DAMAGE. 30 | */ 31 | 32 | /* 33 | * $Id: imapdriver_message.h,v 1.6 2004/11/21 21:53:32 hoa Exp $ 34 | */ 35 | 36 | #ifndef IMAPDRIVER_MESSAGE_H 37 | 38 | #define IMAPDRIVER_MESSAGE_H 39 | 40 | #include 41 | 42 | #ifdef __cplusplus 43 | extern "C" { 44 | #endif 45 | 46 | extern mailmessage_driver * imap_message_driver; 47 | 48 | #ifdef __cplusplus 49 | } 50 | #endif 51 | 52 | #endif 53 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V7-4.3/include/libetpan/mboxdriver_message.h: -------------------------------------------------------------------------------- 1 | /* 2 | * libEtPan! -- a mail stuff library 3 | * 4 | * Copyright (C) 2001, 2005 - DINH Viet Hoa 5 | * All rights reserved. 6 | * 7 | * Redistribution and use in source and binary forms, with or without 8 | * modification, are permitted provided that the following conditions 9 | * are met: 10 | * 1. Redistributions of source code must retain the above copyright 11 | * notice, this list of conditions and the following disclaimer. 12 | * 2. Redistributions in binary form must reproduce the above copyright 13 | * notice, this list of conditions and the following disclaimer in the 14 | * documentation and/or other materials provided with the distribution. 15 | * 3. Neither the name of the libEtPan! project nor the names of its 16 | * contributors may be used to endorse or promote products derived 17 | * from this software without specific prior written permission. 18 | * 19 | * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND 20 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE 23 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 24 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 25 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 26 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 28 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29 | * SUCH DAMAGE. 30 | */ 31 | 32 | /* 33 | * $Id: mboxdriver_message.h,v 1.6 2004/11/21 21:53:32 hoa Exp $ 34 | */ 35 | 36 | #ifndef MBOXDRIVER_MESSAGE_H 37 | 38 | #define MBOXDRIVER_MESSAGE_H 39 | 40 | #include 41 | 42 | #ifdef __cplusplus 43 | extern "C" { 44 | #endif 45 | 46 | extern mailmessage_driver * mbox_message_driver; 47 | 48 | #ifdef __cplusplus 49 | } 50 | #endif 51 | 52 | #endif 53 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V7-4.3/include/libetpan/nntpdriver_message.h: -------------------------------------------------------------------------------- 1 | /* 2 | * libEtPan! -- a mail stuff library 3 | * 4 | * Copyright (C) 2001, 2005 - DINH Viet Hoa 5 | * All rights reserved. 6 | * 7 | * Redistribution and use in source and binary forms, with or without 8 | * modification, are permitted provided that the following conditions 9 | * are met: 10 | * 1. Redistributions of source code must retain the above copyright 11 | * notice, this list of conditions and the following disclaimer. 12 | * 2. Redistributions in binary form must reproduce the above copyright 13 | * notice, this list of conditions and the following disclaimer in the 14 | * documentation and/or other materials provided with the distribution. 15 | * 3. Neither the name of the libEtPan! project nor the names of its 16 | * contributors may be used to endorse or promote products derived 17 | * from this software without specific prior written permission. 18 | * 19 | * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND 20 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE 23 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 24 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 25 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 26 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 28 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29 | * SUCH DAMAGE. 30 | */ 31 | 32 | /* 33 | * $Id: nntpdriver_message.h,v 1.6 2004/11/21 21:53:33 hoa Exp $ 34 | */ 35 | 36 | #ifndef NNTPDRIVER_MESSAGE_H 37 | 38 | #define NNTPDRIVER_MESSAGE_H 39 | 40 | #ifdef __cplusplus 41 | extern "C" { 42 | #endif 43 | 44 | #include 45 | 46 | extern mailmessage_driver * nntp_message_driver; 47 | 48 | #ifdef __cplusplus 49 | } 50 | #endif 51 | 52 | #endif 53 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V7-4.3/include/libetpan/pop3driver_message.h: -------------------------------------------------------------------------------- 1 | /* 2 | * libEtPan! -- a mail stuff library 3 | * 4 | * Copyright (C) 2001, 2005 - DINH Viet Hoa 5 | * All rights reserved. 6 | * 7 | * Redistribution and use in source and binary forms, with or without 8 | * modification, are permitted provided that the following conditions 9 | * are met: 10 | * 1. Redistributions of source code must retain the above copyright 11 | * notice, this list of conditions and the following disclaimer. 12 | * 2. Redistributions in binary form must reproduce the above copyright 13 | * notice, this list of conditions and the following disclaimer in the 14 | * documentation and/or other materials provided with the distribution. 15 | * 3. Neither the name of the libEtPan! project nor the names of its 16 | * contributors may be used to endorse or promote products derived 17 | * from this software without specific prior written permission. 18 | * 19 | * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND 20 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE 23 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 24 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 25 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 26 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 28 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29 | * SUCH DAMAGE. 30 | */ 31 | 32 | /* 33 | * $Id: pop3driver_message.h,v 1.6 2004/11/21 21:53:34 hoa Exp $ 34 | */ 35 | 36 | #ifndef POP3DRIVER_MESSAGE_H 37 | 38 | #define POP3DRIVER_MESSAGE_H 39 | 40 | #include 41 | 42 | #ifdef __cplusplus 43 | extern "C" { 44 | #endif 45 | 46 | extern mailmessage_driver * pop3_message_driver; 47 | 48 | #ifdef __cplusplus 49 | } 50 | #endif 51 | 52 | #endif 53 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V6-4.3/include/libetpan/imapdriver_cached.h: -------------------------------------------------------------------------------- 1 | /* 2 | * libEtPan! -- a mail stuff library 3 | * 4 | * Copyright (C) 2001, 2005 - DINH Viet Hoa 5 | * All rights reserved. 6 | * 7 | * Redistribution and use in source and binary forms, with or without 8 | * modification, are permitted provided that the following conditions 9 | * are met: 10 | * 1. Redistributions of source code must retain the above copyright 11 | * notice, this list of conditions and the following disclaimer. 12 | * 2. Redistributions in binary form must reproduce the above copyright 13 | * notice, this list of conditions and the following disclaimer in the 14 | * documentation and/or other materials provided with the distribution. 15 | * 3. Neither the name of the libEtPan! project nor the names of its 16 | * contributors may be used to endorse or promote products derived 17 | * from this software without specific prior written permission. 18 | * 19 | * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND 20 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE 23 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 24 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 25 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 26 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 28 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29 | * SUCH DAMAGE. 30 | */ 31 | 32 | /* 33 | * $Id: imapdriver_cached.h,v 1.11 2004/11/21 21:53:32 hoa Exp $ 34 | */ 35 | 36 | #ifndef IMAPDRIVER_CACHED_H 37 | 38 | #define IMAPDRIVER_CACHED_H 39 | 40 | #include 41 | 42 | #ifdef __cplusplus 43 | extern "C" { 44 | #endif 45 | 46 | extern mailsession_driver * imap_cached_session_driver; 47 | 48 | #ifdef __cplusplus 49 | } 50 | #endif 51 | 52 | #endif 53 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V6-4.3/include/libetpan/mailsem.h: -------------------------------------------------------------------------------- 1 | /* 2 | * libEtPan! -- a mail stuff library 3 | * 4 | * Copyright (C) 2001, 2005 - DINH Viet Hoa 5 | * All rights reserved. 6 | * 7 | * Redistribution and use in source and binary forms, with or without 8 | * modification, are permitted provided that the following conditions 9 | * are met: 10 | * 1. Redistributions of source code must retain the above copyright 11 | * notice, this list of conditions and the following disclaimer. 12 | * 2. Redistributions in binary form must reproduce the above copyright 13 | * notice, this list of conditions and the following disclaimer in the 14 | * documentation and/or other materials provided with the distribution. 15 | * 3. Neither the name of the libEtPan! project nor the names of its 16 | * contributors may be used to endorse or promote products derived 17 | * from this software without specific prior written permission. 18 | * 19 | * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND 20 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE 23 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 24 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 25 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 26 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 28 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29 | * SUCH DAMAGE. 30 | */ 31 | 32 | /* 33 | * $Id: mailsem.h,v 1.2 2004/11/21 21:53:31 hoa Exp $ 34 | */ 35 | 36 | #ifndef MAILSEM_H 37 | 38 | #define MAILSEM_H 39 | 40 | struct mailsem { 41 | void * sem_sem; 42 | int sem_kind; 43 | }; 44 | 45 | struct mailsem * mailsem_new(void); 46 | void mailsem_free(struct mailsem * sem); 47 | 48 | int mailsem_up(struct mailsem * sem); 49 | int mailsem_down(struct mailsem * sem); 50 | 51 | #endif 52 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V6-4.3/include/libetpan/nntpdriver_cached.h: -------------------------------------------------------------------------------- 1 | /* 2 | * libEtPan! -- a mail stuff library 3 | * 4 | * Copyright (C) 2001, 2005 - DINH Viet Hoa 5 | * All rights reserved. 6 | * 7 | * Redistribution and use in source and binary forms, with or without 8 | * modification, are permitted provided that the following conditions 9 | * are met: 10 | * 1. Redistributions of source code must retain the above copyright 11 | * notice, this list of conditions and the following disclaimer. 12 | * 2. Redistributions in binary form must reproduce the above copyright 13 | * notice, this list of conditions and the following disclaimer in the 14 | * documentation and/or other materials provided with the distribution. 15 | * 3. Neither the name of the libEtPan! project nor the names of its 16 | * contributors may be used to endorse or promote products derived 17 | * from this software without specific prior written permission. 18 | * 19 | * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND 20 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE 23 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 24 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 25 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 26 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 28 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29 | * SUCH DAMAGE. 30 | */ 31 | 32 | /* 33 | * $Id: nntpdriver_cached.h,v 1.14 2004/11/21 21:53:33 hoa Exp $ 34 | */ 35 | 36 | #ifndef NNTPDRIVER_CACHED_H 37 | 38 | #define NNTPDRIVER_CACHED_H 39 | 40 | #include 41 | 42 | #ifdef __cplusplus 43 | extern "C" { 44 | #endif 45 | 46 | extern mailsession_driver * nntp_cached_session_driver; 47 | 48 | #ifdef __cplusplus 49 | } 50 | #endif 51 | 52 | #endif 53 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V6-4.3/include/libetpan/pop3driver_cached.h: -------------------------------------------------------------------------------- 1 | /* 2 | * libEtPan! -- a mail stuff library 3 | * 4 | * Copyright (C) 2001, 2005 - DINH Viet Hoa 5 | * All rights reserved. 6 | * 7 | * Redistribution and use in source and binary forms, with or without 8 | * modification, are permitted provided that the following conditions 9 | * are met: 10 | * 1. Redistributions of source code must retain the above copyright 11 | * notice, this list of conditions and the following disclaimer. 12 | * 2. Redistributions in binary form must reproduce the above copyright 13 | * notice, this list of conditions and the following disclaimer in the 14 | * documentation and/or other materials provided with the distribution. 15 | * 3. Neither the name of the libEtPan! project nor the names of its 16 | * contributors may be used to endorse or promote products derived 17 | * from this software without specific prior written permission. 18 | * 19 | * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND 20 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE 23 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 24 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 25 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 26 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 28 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29 | * SUCH DAMAGE. 30 | */ 31 | 32 | /* 33 | * $Id: pop3driver_cached.h,v 1.15 2004/11/21 21:53:34 hoa Exp $ 34 | */ 35 | 36 | #ifndef POP3DRIVER_CACHED_H 37 | 38 | #define POP3DRIVER_CACHED_H 39 | 40 | #ifdef __cplusplus 41 | extern "C" { 42 | #endif 43 | 44 | #include 45 | 46 | extern mailsession_driver * pop3_cached_session_driver; 47 | 48 | #ifdef __cplusplus 49 | } 50 | #endif 51 | 52 | #endif 53 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V7-4.3/include/libetpan/imapdriver_cached.h: -------------------------------------------------------------------------------- 1 | /* 2 | * libEtPan! -- a mail stuff library 3 | * 4 | * Copyright (C) 2001, 2005 - DINH Viet Hoa 5 | * All rights reserved. 6 | * 7 | * Redistribution and use in source and binary forms, with or without 8 | * modification, are permitted provided that the following conditions 9 | * are met: 10 | * 1. Redistributions of source code must retain the above copyright 11 | * notice, this list of conditions and the following disclaimer. 12 | * 2. Redistributions in binary form must reproduce the above copyright 13 | * notice, this list of conditions and the following disclaimer in the 14 | * documentation and/or other materials provided with the distribution. 15 | * 3. Neither the name of the libEtPan! project nor the names of its 16 | * contributors may be used to endorse or promote products derived 17 | * from this software without specific prior written permission. 18 | * 19 | * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND 20 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE 23 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 24 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 25 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 26 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 28 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29 | * SUCH DAMAGE. 30 | */ 31 | 32 | /* 33 | * $Id: imapdriver_cached.h,v 1.11 2004/11/21 21:53:32 hoa Exp $ 34 | */ 35 | 36 | #ifndef IMAPDRIVER_CACHED_H 37 | 38 | #define IMAPDRIVER_CACHED_H 39 | 40 | #include 41 | 42 | #ifdef __cplusplus 43 | extern "C" { 44 | #endif 45 | 46 | extern mailsession_driver * imap_cached_session_driver; 47 | 48 | #ifdef __cplusplus 49 | } 50 | #endif 51 | 52 | #endif 53 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V7-4.3/include/libetpan/mailsem.h: -------------------------------------------------------------------------------- 1 | /* 2 | * libEtPan! -- a mail stuff library 3 | * 4 | * Copyright (C) 2001, 2005 - DINH Viet Hoa 5 | * All rights reserved. 6 | * 7 | * Redistribution and use in source and binary forms, with or without 8 | * modification, are permitted provided that the following conditions 9 | * are met: 10 | * 1. Redistributions of source code must retain the above copyright 11 | * notice, this list of conditions and the following disclaimer. 12 | * 2. Redistributions in binary form must reproduce the above copyright 13 | * notice, this list of conditions and the following disclaimer in the 14 | * documentation and/or other materials provided with the distribution. 15 | * 3. Neither the name of the libEtPan! project nor the names of its 16 | * contributors may be used to endorse or promote products derived 17 | * from this software without specific prior written permission. 18 | * 19 | * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND 20 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE 23 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 24 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 25 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 26 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 28 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29 | * SUCH DAMAGE. 30 | */ 31 | 32 | /* 33 | * $Id: mailsem.h,v 1.2 2004/11/21 21:53:31 hoa Exp $ 34 | */ 35 | 36 | #ifndef MAILSEM_H 37 | 38 | #define MAILSEM_H 39 | 40 | struct mailsem { 41 | void * sem_sem; 42 | int sem_kind; 43 | }; 44 | 45 | struct mailsem * mailsem_new(void); 46 | void mailsem_free(struct mailsem * sem); 47 | 48 | int mailsem_up(struct mailsem * sem); 49 | int mailsem_down(struct mailsem * sem); 50 | 51 | #endif 52 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V7-4.3/include/libetpan/nntpdriver_cached.h: -------------------------------------------------------------------------------- 1 | /* 2 | * libEtPan! -- a mail stuff library 3 | * 4 | * Copyright (C) 2001, 2005 - DINH Viet Hoa 5 | * All rights reserved. 6 | * 7 | * Redistribution and use in source and binary forms, with or without 8 | * modification, are permitted provided that the following conditions 9 | * are met: 10 | * 1. Redistributions of source code must retain the above copyright 11 | * notice, this list of conditions and the following disclaimer. 12 | * 2. Redistributions in binary form must reproduce the above copyright 13 | * notice, this list of conditions and the following disclaimer in the 14 | * documentation and/or other materials provided with the distribution. 15 | * 3. Neither the name of the libEtPan! project nor the names of its 16 | * contributors may be used to endorse or promote products derived 17 | * from this software without specific prior written permission. 18 | * 19 | * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND 20 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE 23 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 24 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 25 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 26 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 28 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29 | * SUCH DAMAGE. 30 | */ 31 | 32 | /* 33 | * $Id: nntpdriver_cached.h,v 1.14 2004/11/21 21:53:33 hoa Exp $ 34 | */ 35 | 36 | #ifndef NNTPDRIVER_CACHED_H 37 | 38 | #define NNTPDRIVER_CACHED_H 39 | 40 | #include 41 | 42 | #ifdef __cplusplus 43 | extern "C" { 44 | #endif 45 | 46 | extern mailsession_driver * nntp_cached_session_driver; 47 | 48 | #ifdef __cplusplus 49 | } 50 | #endif 51 | 52 | #endif 53 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneOS-V7-4.3/include/libetpan/pop3driver_cached.h: -------------------------------------------------------------------------------- 1 | /* 2 | * libEtPan! -- a mail stuff library 3 | * 4 | * Copyright (C) 2001, 2005 - DINH Viet Hoa 5 | * All rights reserved. 6 | * 7 | * Redistribution and use in source and binary forms, with or without 8 | * modification, are permitted provided that the following conditions 9 | * are met: 10 | * 1. Redistributions of source code must retain the above copyright 11 | * notice, this list of conditions and the following disclaimer. 12 | * 2. Redistributions in binary form must reproduce the above copyright 13 | * notice, this list of conditions and the following disclaimer in the 14 | * documentation and/or other materials provided with the distribution. 15 | * 3. Neither the name of the libEtPan! project nor the names of its 16 | * contributors may be used to endorse or promote products derived 17 | * from this software without specific prior written permission. 18 | * 19 | * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND 20 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE 23 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 24 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 25 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 26 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 28 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29 | * SUCH DAMAGE. 30 | */ 31 | 32 | /* 33 | * $Id: pop3driver_cached.h,v 1.15 2004/11/21 21:53:34 hoa Exp $ 34 | */ 35 | 36 | #ifndef POP3DRIVER_CACHED_H 37 | 38 | #define POP3DRIVER_CACHED_H 39 | 40 | #ifdef __cplusplus 41 | extern "C" { 42 | #endif 43 | 44 | #include 45 | 46 | extern mailsession_driver * pop3_cached_session_driver; 47 | 48 | #ifdef __cplusplus 49 | } 50 | #endif 51 | 52 | #endif 53 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneSimulator-4.3/include/libetpan/dbdriver.h: -------------------------------------------------------------------------------- 1 | /* 2 | * libEtPan! -- a mail stuff library 3 | * 4 | * Copyright (C) 2001, 2005 - DINH Viet Hoa 5 | * All rights reserved. 6 | * 7 | * Redistribution and use in source and binary forms, with or without 8 | * modification, are permitted provided that the following conditions 9 | * are met: 10 | * 1. Redistributions of source code must retain the above copyright 11 | * notice, this list of conditions and the following disclaimer. 12 | * 2. Redistributions in binary form must reproduce the above copyright 13 | * notice, this list of conditions and the following disclaimer in the 14 | * documentation and/or other materials provided with the distribution. 15 | * 3. Neither the name of the libEtPan! project nor the names of its 16 | * contributors may be used to endorse or promote products derived 17 | * from this software without specific prior written permission. 18 | * 19 | * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND 20 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE 23 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 24 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 25 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 26 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 28 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29 | * SUCH DAMAGE. 30 | */ 31 | 32 | /* 33 | * $Id: dbdriver.h,v 1.2 2004/11/21 21:53:31 hoa Exp $ 34 | */ 35 | 36 | #ifndef DBDRIVER_H 37 | 38 | #define DBDRIVER_H 39 | 40 | #include 41 | #include 42 | 43 | #ifdef __cplusplus 44 | extern "C" { 45 | #endif 46 | 47 | extern mailsession_driver * db_session_driver; 48 | 49 | #ifdef __cplusplus 50 | } 51 | #endif 52 | 53 | #endif 54 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneSimulator-4.3/include/libetpan/feeddriver_message.h: -------------------------------------------------------------------------------- 1 | /* 2 | * libEtPan! -- a mail stuff library 3 | * 4 | * Copyright (C) 2001, 2005 - DINH Viet Hoa 5 | * All rights reserved. 6 | * 7 | * Redistribution and use in source and binary forms, with or without 8 | * modification, are permitted provided that the following conditions 9 | * are met: 10 | * 1. Redistributions of source code must retain the above copyright 11 | * notice, this list of conditions and the following disclaimer. 12 | * 2. Redistributions in binary form must reproduce the above copyright 13 | * notice, this list of conditions and the following disclaimer in the 14 | * documentation and/or other materials provided with the distribution. 15 | * 3. Neither the name of the libEtPan! project nor the names of its 16 | * contributors may be used to endorse or promote products derived 17 | * from this software without specific prior written permission. 18 | * 19 | * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND 20 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE 23 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 24 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 25 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 26 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 28 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29 | * SUCH DAMAGE. 30 | */ 31 | 32 | /* 33 | * $Id: feeddriver_message.h,v 1.1 2007/01/18 09:15:01 hoa Exp $ 34 | */ 35 | 36 | #ifndef FEEDDRIVER_MESSAGE_H 37 | 38 | #define FEEDDRIVER_MESSAGE_H 39 | 40 | #ifdef __cplusplus 41 | extern "C" { 42 | #endif 43 | 44 | #include 45 | 46 | extern mailmessage_driver * feed_message_driver; 47 | 48 | #ifdef __cplusplus 49 | } 50 | #endif 51 | 52 | #endif 53 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneSimulator-4.3/include/libetpan/imapdriver_message.h: -------------------------------------------------------------------------------- 1 | /* 2 | * libEtPan! -- a mail stuff library 3 | * 4 | * Copyright (C) 2001, 2005 - DINH Viet Hoa 5 | * All rights reserved. 6 | * 7 | * Redistribution and use in source and binary forms, with or without 8 | * modification, are permitted provided that the following conditions 9 | * are met: 10 | * 1. Redistributions of source code must retain the above copyright 11 | * notice, this list of conditions and the following disclaimer. 12 | * 2. Redistributions in binary form must reproduce the above copyright 13 | * notice, this list of conditions and the following disclaimer in the 14 | * documentation and/or other materials provided with the distribution. 15 | * 3. Neither the name of the libEtPan! project nor the names of its 16 | * contributors may be used to endorse or promote products derived 17 | * from this software without specific prior written permission. 18 | * 19 | * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND 20 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE 23 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 24 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 25 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 26 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 28 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29 | * SUCH DAMAGE. 30 | */ 31 | 32 | /* 33 | * $Id: imapdriver_message.h,v 1.6 2004/11/21 21:53:32 hoa Exp $ 34 | */ 35 | 36 | #ifndef IMAPDRIVER_MESSAGE_H 37 | 38 | #define IMAPDRIVER_MESSAGE_H 39 | 40 | #include 41 | 42 | #ifdef __cplusplus 43 | extern "C" { 44 | #endif 45 | 46 | extern mailmessage_driver * imap_message_driver; 47 | 48 | #ifdef __cplusplus 49 | } 50 | #endif 51 | 52 | #endif 53 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneSimulator-4.3/include/libetpan/mboxdriver_message.h: -------------------------------------------------------------------------------- 1 | /* 2 | * libEtPan! -- a mail stuff library 3 | * 4 | * Copyright (C) 2001, 2005 - DINH Viet Hoa 5 | * All rights reserved. 6 | * 7 | * Redistribution and use in source and binary forms, with or without 8 | * modification, are permitted provided that the following conditions 9 | * are met: 10 | * 1. Redistributions of source code must retain the above copyright 11 | * notice, this list of conditions and the following disclaimer. 12 | * 2. Redistributions in binary form must reproduce the above copyright 13 | * notice, this list of conditions and the following disclaimer in the 14 | * documentation and/or other materials provided with the distribution. 15 | * 3. Neither the name of the libEtPan! project nor the names of its 16 | * contributors may be used to endorse or promote products derived 17 | * from this software without specific prior written permission. 18 | * 19 | * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND 20 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE 23 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 24 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 25 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 26 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 28 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29 | * SUCH DAMAGE. 30 | */ 31 | 32 | /* 33 | * $Id: mboxdriver_message.h,v 1.6 2004/11/21 21:53:32 hoa Exp $ 34 | */ 35 | 36 | #ifndef MBOXDRIVER_MESSAGE_H 37 | 38 | #define MBOXDRIVER_MESSAGE_H 39 | 40 | #include 41 | 42 | #ifdef __cplusplus 43 | extern "C" { 44 | #endif 45 | 46 | extern mailmessage_driver * mbox_message_driver; 47 | 48 | #ifdef __cplusplus 49 | } 50 | #endif 51 | 52 | #endif 53 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneSimulator-4.3/include/libetpan/nntpdriver_message.h: -------------------------------------------------------------------------------- 1 | /* 2 | * libEtPan! -- a mail stuff library 3 | * 4 | * Copyright (C) 2001, 2005 - DINH Viet Hoa 5 | * All rights reserved. 6 | * 7 | * Redistribution and use in source and binary forms, with or without 8 | * modification, are permitted provided that the following conditions 9 | * are met: 10 | * 1. Redistributions of source code must retain the above copyright 11 | * notice, this list of conditions and the following disclaimer. 12 | * 2. Redistributions in binary form must reproduce the above copyright 13 | * notice, this list of conditions and the following disclaimer in the 14 | * documentation and/or other materials provided with the distribution. 15 | * 3. Neither the name of the libEtPan! project nor the names of its 16 | * contributors may be used to endorse or promote products derived 17 | * from this software without specific prior written permission. 18 | * 19 | * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND 20 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE 23 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 24 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 25 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 26 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 28 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29 | * SUCH DAMAGE. 30 | */ 31 | 32 | /* 33 | * $Id: nntpdriver_message.h,v 1.6 2004/11/21 21:53:33 hoa Exp $ 34 | */ 35 | 36 | #ifndef NNTPDRIVER_MESSAGE_H 37 | 38 | #define NNTPDRIVER_MESSAGE_H 39 | 40 | #ifdef __cplusplus 41 | extern "C" { 42 | #endif 43 | 44 | #include 45 | 46 | extern mailmessage_driver * nntp_message_driver; 47 | 48 | #ifdef __cplusplus 49 | } 50 | #endif 51 | 52 | #endif 53 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneSimulator-4.3/include/libetpan/pop3driver_message.h: -------------------------------------------------------------------------------- 1 | /* 2 | * libEtPan! -- a mail stuff library 3 | * 4 | * Copyright (C) 2001, 2005 - DINH Viet Hoa 5 | * All rights reserved. 6 | * 7 | * Redistribution and use in source and binary forms, with or without 8 | * modification, are permitted provided that the following conditions 9 | * are met: 10 | * 1. Redistributions of source code must retain the above copyright 11 | * notice, this list of conditions and the following disclaimer. 12 | * 2. Redistributions in binary form must reproduce the above copyright 13 | * notice, this list of conditions and the following disclaimer in the 14 | * documentation and/or other materials provided with the distribution. 15 | * 3. Neither the name of the libEtPan! project nor the names of its 16 | * contributors may be used to endorse or promote products derived 17 | * from this software without specific prior written permission. 18 | * 19 | * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND 20 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE 23 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 24 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 25 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 26 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 28 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29 | * SUCH DAMAGE. 30 | */ 31 | 32 | /* 33 | * $Id: pop3driver_message.h,v 1.6 2004/11/21 21:53:34 hoa Exp $ 34 | */ 35 | 36 | #ifndef POP3DRIVER_MESSAGE_H 37 | 38 | #define POP3DRIVER_MESSAGE_H 39 | 40 | #include 41 | 42 | #ifdef __cplusplus 43 | extern "C" { 44 | #endif 45 | 46 | extern mailmessage_driver * pop3_message_driver; 47 | 48 | #ifdef __cplusplus 49 | } 50 | #endif 51 | 52 | #endif 53 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneSimulator-4.3/include/libetpan/imapdriver_cached.h: -------------------------------------------------------------------------------- 1 | /* 2 | * libEtPan! -- a mail stuff library 3 | * 4 | * Copyright (C) 2001, 2005 - DINH Viet Hoa 5 | * All rights reserved. 6 | * 7 | * Redistribution and use in source and binary forms, with or without 8 | * modification, are permitted provided that the following conditions 9 | * are met: 10 | * 1. Redistributions of source code must retain the above copyright 11 | * notice, this list of conditions and the following disclaimer. 12 | * 2. Redistributions in binary form must reproduce the above copyright 13 | * notice, this list of conditions and the following disclaimer in the 14 | * documentation and/or other materials provided with the distribution. 15 | * 3. Neither the name of the libEtPan! project nor the names of its 16 | * contributors may be used to endorse or promote products derived 17 | * from this software without specific prior written permission. 18 | * 19 | * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND 20 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE 23 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 24 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 25 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 26 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 28 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29 | * SUCH DAMAGE. 30 | */ 31 | 32 | /* 33 | * $Id: imapdriver_cached.h,v 1.11 2004/11/21 21:53:32 hoa Exp $ 34 | */ 35 | 36 | #ifndef IMAPDRIVER_CACHED_H 37 | 38 | #define IMAPDRIVER_CACHED_H 39 | 40 | #include 41 | 42 | #ifdef __cplusplus 43 | extern "C" { 44 | #endif 45 | 46 | extern mailsession_driver * imap_cached_session_driver; 47 | 48 | #ifdef __cplusplus 49 | } 50 | #endif 51 | 52 | #endif 53 | -------------------------------------------------------------------------------- /iOS-static-libs/iPhoneSimulator-4.3/include/libetpan/mailsem.h: -------------------------------------------------------------------------------- 1 | /* 2 | * libEtPan! -- a mail stuff library 3 | * 4 | * Copyright (C) 2001, 2005 - DINH Viet Hoa 5 | * All rights reserved. 6 | * 7 | * Redistribution and use in source and binary forms, with or without 8 | * modification, are permitted provided that the following conditions 9 | * are met: 10 | * 1. Redistributions of source code must retain the above copyright 11 | * notice, this list of conditions and the following disclaimer. 12 | * 2. Redistributions in binary form must reproduce the above copyright 13 | * notice, this list of conditions and the following disclaimer in the 14 | * documentation and/or other materials provided with the distribution. 15 | * 3. Neither the name of the libEtPan! project nor the names of its 16 | * contributors may be used to endorse or promote products derived 17 | * from this software without specific prior written permission. 18 | * 19 | * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND 20 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE 23 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 24 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 25 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 26 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 28 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29 | * SUCH DAMAGE. 30 | */ 31 | 32 | /* 33 | * $Id: mailsem.h,v 1.2 2004/11/21 21:53:31 hoa Exp $ 34 | */ 35 | 36 | #ifndef MAILSEM_H 37 | 38 | #define MAILSEM_H 39 | 40 | struct mailsem { 41 | void * sem_sem; 42 | int sem_kind; 43 | }; 44 | 45 | struct mailsem * mailsem_new(void); 46 | void mailsem_free(struct mailsem * sem); 47 | 48 | int mailsem_up(struct mailsem * sem); 49 | int mailsem_down(struct mailsem * sem); 50 | 51 | #endif 52 | --------------------------------------------------------------------------------