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