summaryrefslogtreecommitdiff
path: root/qpid/cpp
diff options
context:
space:
mode:
authorCharles E. Rolke <chug@apache.org>2013-06-26 20:21:39 +0000
committerCharles E. Rolke <chug@apache.org>2013-06-26 20:21:39 +0000
commit4911dd0a851319e4a5c2172d97638d798fc1b9ce (patch)
treec9cbe1e3cf9fdf2e50152bd96e42fc02a7e96470 /qpid/cpp
parent27e19a50dda487c1ba3e69e539e57ae499b29b9c (diff)
downloadqpid-python-4911dd0a851319e4a5c2172d97638d798fc1b9ce.tar.gz
QPID-4919: repair r1497036 for windows builds
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1497074 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp')
-rw-r--r--qpid/cpp/src/qpid/amqp_0_10/CodecsInternal.h15
1 files changed, 8 insertions, 7 deletions
diff --git a/qpid/cpp/src/qpid/amqp_0_10/CodecsInternal.h b/qpid/cpp/src/qpid/amqp_0_10/CodecsInternal.h
index 98b03c581e..cf9a7d0447 100644
--- a/qpid/cpp/src/qpid/amqp_0_10/CodecsInternal.h
+++ b/qpid/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