blob: 5c66abc1eb520b73806560fe4a8cb0c33d1861c3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/**
* @file llinvite.h
* @brief Constants used for inviting users to join groups.
*
* Copyright (c) 2002-$CurrentYear$, Linden Research, Inc.
* $License$
*/
#ifndef LL_LLINVITE_H
#define LL_LLINVITE_H
const S32 INVITE_LIST_STR_LEN = 324; // Would be larger, but we don't have much room in the CreateGroupRequest msg.
const S32 INVITE_LIST_BUF_SIZE = 325;
#endif // LL_LLINVITE_H
|