diff options
| author | Charles E. Rolke <chug@apache.org> | 2013-06-26 20:21:39 +0000 |
|---|---|---|
| committer | Charles E. Rolke <chug@apache.org> | 2013-06-26 20:21:39 +0000 |
| commit | 79b2c152ff7c709173f5f7f5d8fc57af80fefb58 (patch) | |
| tree | 3d66a1283c35c6336e8d14d2f01b15707e24bb83 /cpp | |
| parent | a11ef9f8aa0a1912d2430c34c69ce2cc08b76aab (diff) | |
| download | qpid-python-79b2c152ff7c709173f5f7f5d8fc57af80fefb58.tar.gz | |
QPID-4919: repair r1497036 for windows builds
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1497074 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp')
| -rw-r--r-- | cpp/src/qpid/amqp_0_10/CodecsInternal.h | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/cpp/src/qpid/amqp_0_10/CodecsInternal.h b/cpp/src/qpid/amqp_0_10/CodecsInternal.h index 98b03c581e..cf9a7d0447 100644 --- a/cpp/src/qpid/amqp_0_10/CodecsInternal.h +++ b/cpp/src/qpid/amqp_0_10/CodecsInternal.h @@ -21,6 +21,7 @@ * under the License. * */ +#include "qpid/CommonImportExport.h" #include "qpid/types/Variant.h" namespace qpid { @@ -28,13 +29,13 @@ namespace framing { class Buffer; } namespace amqp_0_10 { -void encode(const qpid::types::Variant::Map& map, uint32_t len, qpid::framing::Buffer& buffer); -void encode(const qpid::types::Variant::List& list, uint32_t len, qpid::framing::Buffer& buffer); -void encode(const qpid::types::Variant& value, qpid::framing::Buffer& buffer); -void encode(const std::string& value, const std::string& encoding, qpid::framing::Buffer& buffer); -uint32_t encodedSize(const qpid::types::Variant::Map& values); -uint32_t encodedSize(const qpid::types::Variant::List& values); -uint32_t encodedSize(const std::string& value); +QPID_COMMON_EXTERN void encode(const qpid::types::Variant::Map& map, uint32_t len, qpid::framing::Buffer& buffer); +QPID_COMMON_EXTERN void encode(const qpid::types::Variant::List& list, uint32_t len, qpid::framing::Buffer& buffer); +QPID_COMMON_EXTERN void encode(const qpid::types::Variant& value, qpid::framing::Buffer& buffer); +QPID_COMMON_EXTERN void encode(const std::string& value, const std::string& encoding, qpid::framing::Buffer& buffer); +QPID_COMMON_EXTERN uint32_t encodedSize(const qpid::types::Variant::Map& values); +QPID_COMMON_EXTERN uint32_t encodedSize(const qpid::types::Variant::List& values); +QPID_COMMON_EXTERN uint32_t encodedSize(const std::string& value); }} // namespace qpid::amqp_0_10 |
