38 |
|
|
39 |
|
enum |
40 |
|
{ |
41 |
< |
FLOOD_NOTICED = 0x00000001U, |
41 |
> |
MSG_FLOOD_NOTICED = 0x00000001U, |
42 |
|
JOIN_FLOOD_NOTICED = 0x00000002U |
43 |
|
}; |
44 |
|
|
45 |
< |
#define SetFloodNoticed(x) ((x)->flags |= FLOOD_NOTICED) |
46 |
< |
#define IsSetFloodNoticed(x) ((x)->flags & FLOOD_NOTICED) |
47 |
< |
#define ClearFloodNoticed(x) ((x)->flags &= ~FLOOD_NOTICED) |
45 |
> |
#define SetFloodNoticed(x) ((x)->flags |= MSG_FLOOD_NOTICED) |
46 |
> |
#define IsSetFloodNoticed(x) ((x)->flags & MSG_FLOOD_NOTICED) |
47 |
> |
#define ClearFloodNoticed(x) ((x)->flags &= ~MSG_FLOOD_NOTICED) |
48 |
|
|
49 |
|
#define SetJoinFloodNoticed(x) ((x)->flags |= JOIN_FLOOD_NOTICED) |
50 |
|
#define IsSetJoinFloodNoticed(x) ((x)->flags & JOIN_FLOOD_NOTICED) |