summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2004-05-25 20:32:17 +0000
committerAndy Polyakov <appro@openssl.org>2004-05-25 20:32:17 +0000
commit6577e169205fd5eca56a6bad6f94e33b5fb710f4 (patch)
tree8af2b7225bb14a7ee1bb56dac0d902764efb7c70 /doc
parent3fc378aa0b464d6296fbf4f0d84b66a207b3f8a2 (diff)
Documentation note for Win32 glue between BIO layer and compiler run-time.
Diffstat (limited to 'doc')
-rw-r--r--doc/crypto/OPENSSL_Applink.pod21
1 files changed, 21 insertions, 0 deletions
diff --git a/doc/crypto/OPENSSL_Applink.pod b/doc/crypto/OPENSSL_Applink.pod
new file mode 100644
index 0000000000..f15fb695eb
--- /dev/null
+++ b/doc/crypto/OPENSSL_Applink.pod
@@ -0,0 +1,21 @@
+=pod
+
+=head1 NAME
+
+OPENSSL_Applink
+
+=head1 SYNOPSIS
+
+ __declspec(dllexport) void **OPENSSL_Applink();
+
+=head1 DESCRIPTION
+
+OPENSSL_Applink is application-side interface which provides a glue
+between OpenSSL BIO layer and Win32 compiler run-time environment.
+Even though it appears at application side, it's essentially OpenSSL
+private interface. For this reason application developers are not
+expected to implement it, but to compile provided module with
+compiler of their choice and link it into the target application.
+The referred module is available as <openssl>/ms/applink.c.
+
+=cut