Export functions.
authorcantor <cantor@fb386ef7-a10c-0410-8ebf-fd3f8e989ab0>
Thu, 18 Oct 2007 18:01:29 +0000 (18:01 +0000)
committercantor <cantor@fb386ef7-a10c-0410-8ebf-fd3f8e989ab0>
Thu, 18 Oct 2007 18:01:29 +0000 (18:01 +0000)
git-svn-id: https://svn.middleware.georgetown.edu/cpp-opensaml2/trunk@320 fb386ef7-a10c-0410-8ebf-fd3f8e989ab0

saml/saml2/binding/SAML2Redirect.h

index 5612fb7..23296da 100644 (file)
@@ -34,7 +34,7 @@ namespace opensaml {
          * @param out_len   will contain the length of the resulting data
          * @return  allocated buffer of out_len bytes containing deflated data
          */
-        char* deflate(char* in, unsigned int in_len, unsigned int* out_len);
+        SAML_EXPORT char* deflate(char* in, unsigned int in_len, unsigned int* out_len);
         
         /**
          * Inflates data compressed in accordance with RFC1951 and sends the
@@ -45,6 +45,6 @@ namespace opensaml {
          * @param out       reference to output stream to receive data
          * @return  number of bytes written to stream
          */
-        unsigned int inflate(char* in, unsigned int in_len, std::ostream& out);
+        SAML_EXPORT unsigned int inflate(char* in, unsigned int in_len, std::ostream& out);
     };
 };