From: cantor Date: Thu, 18 Oct 2007 18:01:29 +0000 (+0000) Subject: Export functions. X-Git-Tag: 2.4.1~300 X-Git-Url: http://www.project-moonshot.org/gitweb/?p=shibboleth%2Fopensaml2.git;a=commitdiff_plain;h=2e98bf6bbec0d5463b6e844adf11d7b9237f1c05 Export functions. git-svn-id: https://svn.middleware.georgetown.edu/cpp-opensaml2/trunk@320 fb386ef7-a10c-0410-8ebf-fd3f8e989ab0 --- diff --git a/saml/saml2/binding/SAML2Redirect.h b/saml/saml2/binding/SAML2Redirect.h index 5612fb7..23296da 100644 --- a/saml/saml2/binding/SAML2Redirect.h +++ b/saml/saml2/binding/SAML2Redirect.h @@ -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); }; };