blob: 8ca3c560224670166d51d4f1828899dbcc575bd5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
/**
* @file llmessagesystem_stub.cpp
*
* $LicenseInfo:firstyear=2008&license=viewergpl$
* Copyright (c) 2008-2009, Linden Research, Inc.
* $/LicenseInfo$
*/
#include "linden_common.h"
char * _PREHASH_TextureEntry;
S32 LLMessageSystem::getSizeFast(char const*, char const*) const
{
return 0;
}
S32 LLMessageSystem::getSizeFast(char const*, int, char const*) const
{
return 0;
}
void LLMessageSystem::getBinaryDataFast(char const*, char const*, void*, int, int, int)
{
}
void LLMessageSystem::addBinaryDataFast(char const*, void const*, int)
{
}
|