blob: 90120b2648be7a880f3a186326707b24703841f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/**
* @file lleventflags.h
* @brief Flags for events.
*
* Copyright (c) 2004-$CurrentYear$, Linden Research, Inc.
* $License$
*/
#ifndef LL_LLEVENTFLAGS_H
#define LL_LLEVENTFLAGS_H
const U32 EVENT_FLAG_NONE = 0x0000;
// set for mature events
const U32 EVENT_FLAG_MATURE = 0x0001;
#endif
|