diff options
author | Merov Linden <merov@lindenlab.com> | 2011-01-12 11:12:56 -0800 |
---|---|---|
committer | Merov Linden <merov@lindenlab.com> | 2011-01-12 11:12:56 -0800 |
commit | c6895302edde86c48218cd0eb6c2e6b60799845f (patch) | |
tree | 3c5f5e915d9a932537b5a0f7d327521344db2725 /indra/llui/tests | |
parent | 3fa22188387d656f0a3c29c474604b309e64da6d (diff) | |
parent | 376ee7a3f9a07f584386e45516645ce3acbe3cb6 (diff) |
STORM-797 : pull in viewer-development
Diffstat (limited to 'indra/llui/tests')
-rw-r--r-- | indra/llui/tests/llurlentry_stub.cpp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/indra/llui/tests/llurlentry_stub.cpp b/indra/llui/tests/llurlentry_stub.cpp index f30704cb22..96ebe83826 100644 --- a/indra/llui/tests/llurlentry_stub.cpp +++ b/indra/llui/tests/llurlentry_stub.cpp @@ -30,6 +30,7 @@ #include "llavatarnamecache.h" #include "llcachename.h" #include "lluuid.h" +#include "message.h" #include <string> @@ -191,3 +192,20 @@ LLFontGL* LLFontGL::getFontDefault() { return NULL; } + +char* _PREHASH_AgentData = "AgentData"; +char* _PREHASH_AgentID = "AgentID"; + +LLHost LLHost::invalid(INVALID_PORT,INVALID_HOST_IP_ADDRESS); + +LLMessageSystem* gMessageSystem = NULL; + +// +// Stub implementation for LLMessageSystem +// +void LLMessageSystem::newMessage(const char *name) { } +void LLMessageSystem::nextBlockFast(const char *blockname) { } +void LLMessageSystem::nextBlock(const char *blockname) { } +void LLMessageSystem::addUUIDFast( const char *varname, const LLUUID& uuid) { } +void LLMessageSystem::addUUID( const char *varname, const LLUUID& uuid) { } +S32 LLMessageSystem::sendReliable(const LLHost &host) { return 0; } |