blob: 547421648c887b8c89c32c4dc5d443a0785eb450 (
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
|
/**
* @file llviewergenericmessage.h
* @brief Handle processing of "generic messages" which contain short lists of strings.
* @author James Cook
*
* Copyright (c) 2007-$CurrentYear$, Linden Research, Inc.
* $License$
*/
#ifndef LLVIEWERGENERICMESSAGE_H
#define LLVIEWERGENERICMESSAGE_H
class LLUUID;
class LLDispatcher;
void send_generic_message(const char* method,
const std::vector<std::string>& strings,
const LLUUID& invoice = LLUUID::null);
void process_generic_message(LLMessageSystem* msg, void**);
extern LLDispatcher gGenericDispatcher;
#endif
|