Josh Yelon's parser-inc files for openssl-0.9.7a-35

This commit is contained in:
David Rose 2005-01-03 21:50:28 +00:00
parent a0482c947f
commit 6956d642d2
8 changed files with 34 additions and 11 deletions

View File

@ -1,7 +1,9 @@
#define INSTALL_PARSER_INC \
algorithm deque ft2build.h hash_map hash_set iostream list map memory \
pair queue set stack stdcompare.h stdtypedefs.h \
string vector windows.h zlib.h md5.h files.h hex.h \
string vector windows.h zlib.h files.h hex.h \
bits/pthreadtypes.h \
openssl/md5.h openssl/evp.h openssl/rand.h openssl/ssl.h openssl/x509.h openssl/err.h \
nurbs.hh stddef.h krb5.h MainHelix.h dllpath.h hxcom.h \
hxcomm.h hxcore.h hxengin.h hxerror.h hxfiles.h hxtbuf.h \
hxtbuff.h hxwin.h Python.h Cg/cg.h Cg/cgGL.h

View File

View File

@ -0,0 +1,8 @@
#ifndef EVP_H
#define EVP_H
struct EVP_CIPHER_CTX;
struct EVP_PKEY;
#endif

View File

@ -20,13 +20,3 @@
// intended to be compiled--they're just parsed by CPPParser (and
// interrogate) in lieu of the actual system headers, to generate the
// interrogate database.
#ifndef MD5_H
#define MD5_H
namespace CryptoPP {
class MD5;
};
#endif

View File

View File

View File

@ -0,0 +1,13 @@
#ifndef SSL_H
#define SSL_H
struct BIO;
struct SSL_CTX;
struct EVP_CIPHER_CTX;
struct EVP_PKEY;
struct X509;
struct X509_STORE;
struct X509_NAME;
#endif

View File

@ -0,0 +1,10 @@
#ifndef X509_H
#define X509_H
struct X509;
struct X509_STORE;
struct X509_NAME;
#endif