Browse Source

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

David Rose 21 years ago
parent
commit
6956d642d2

+ 3 - 1
dtool/src/parser-inc/Sources.pp

@@ -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

+ 0 - 0
dtool/src/parser-inc/err.h


+ 8 - 0
dtool/src/parser-inc/evp.h

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

+ 0 - 10
dtool/src/parser-inc/md5.h

@@ -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
-

+ 0 - 0
dtool/src/parser-inc/pthreadtypes.h


+ 0 - 0
dtool/src/parser-inc/rand.h


+ 13 - 0
dtool/src/parser-inc/ssl.h

@@ -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

+ 10 - 0
dtool/src/parser-inc/x509.h

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