diff options
Diffstat (limited to 'cpp/src/IceSSL/RFC2253.h')
-rw-r--r-- | cpp/src/IceSSL/RFC2253.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/src/IceSSL/RFC2253.h b/cpp/src/IceSSL/RFC2253.h index b29b60e618d..e642af16a88 100644 --- a/cpp/src/IceSSL/RFC2253.h +++ b/cpp/src/IceSSL/RFC2253.h @@ -33,7 +33,7 @@ namespace RFC2253 typedef std::list< std::pair<std::string, std::string> > RDNSeq; -struct RDNEntry +struct ICESSL_API RDNEntry { RDNSeq rdn; bool negate; @@ -46,7 +46,7 @@ typedef std::list<RDNEntry> RDNEntrySeq; // The function returns a list of RDNEntry structures. Any failure in // parsing results in a ParseException being thrown. // -RDNEntrySeq parse(const std::string&); +ICESSL_API RDNEntrySeq parse(const std::string&); // // RDNs are separated with ',' and ';'. @@ -54,12 +54,12 @@ RDNEntrySeq parse(const std::string&); // This function returns a list of RDN pairs. Any failure in parsing // results in a ParseException being thrown. // -RDNSeq parseStrict(const std::string&); +ICESSL_API RDNSeq parseStrict(const std::string&); // // Unescape the string. // -std::string unescape(const std::string&); +ICESSL_API std::string unescape(const std::string&); } } |