summaryrefslogtreecommitdiff
path: root/cpp/src/qpid
diff options
context:
space:
mode:
authorStephen D. Huston <shuston@apache.org>2009-07-13 21:29:20 +0000
committerStephen D. Huston <shuston@apache.org>2009-07-13 21:29:20 +0000
commit462067e96ee35c0267c9067bc736c739e42a26cb (patch)
tree81641e9e59fbfa5cebe2d8da6684fdc9318a0c26 /cpp/src/qpid
parent815d45a2129244b0061bc8d59793c49f26df9f22 (diff)
downloadqpid-python-462067e96ee35c0267c9067bc736c739e42a26cb.tar.gz
Add missing externs for Queue methods; silence getenv() warnings on Windows by setting _CRT_NO_SECURE_WARNING
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@793717 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid')
-rw-r--r--cpp/src/qpid/broker/Queue.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/qpid/broker/Queue.h b/cpp/src/qpid/broker/Queue.h
index f1a2afe3a4..777ef5e35a 100644
--- a/cpp/src/qpid/broker/Queue.h
+++ b/cpp/src/qpid/broker/Queue.h
@@ -203,11 +203,11 @@ namespace qpid {
* available it will be dispatched immediately, else it
* will be returned to the front of the queue.
*/
- void requeue(const QueuedMessage& msg);
+ QPID_BROKER_EXTERN void requeue(const QueuedMessage& msg);
/**
* Used during recovery to add stored messages back to the queue
*/
- void recover(boost::intrusive_ptr<Message>& msg);
+ QPID_BROKER_EXTERN void recover(boost::intrusive_ptr<Message>& msg);
QPID_BROKER_EXTERN void consume(Consumer::shared_ptr c,
bool exclusive = false);