4 lines
92 B
C
4 lines
92 B
C
|
#pragma once
|
||
|
|
||
|
#define FLAG_SET(x, flag) x |= (flag)
|
||
|
#define FLAG_UNSET(x, flag) x &= ~(flag)
|