mastodont-c/include/mastodont_visibility_types.h
me@ow.nekobit.net 07e86dfd82 Bitwise notification and visibility types
Allows us to bitwise OR types tgoether, used mainly for exclude GET parameters

FossilOrigin-Name: b9a83bef15e39d44c58101ac701d6fe98f915dcd05c9a22bf9420aea3a1fd029
2022-03-18 18:01:59 +00:00

30 lines
1.1 KiB
C

/*
* This program is free software: you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License as published by the Free
* Software Foundation, either version 3 of the License, or (at your option) any
* later version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
* details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#ifndef MASTODONT_VISIBILITY_TYPES_H
#define MASTODONT_VISIBILITY_TYPES_H
#include <stdint.h>
#define MSTDNT_VISIBILITY_PUBLIC (1<<0)
#define MSTDNT_VISIBILITY_UNLISTED (1<<1)
#define MSTDNT_VISIBILITY_PRIVATE (1<<2)
#define MSTDNT_VISIBILITY_DIRECT (1<<3)
#define MSTDNT_VISIBILITY_LIST (1<<4)
#define MSTDNT_VISIBILITY_LOCAL (1<<5)
typedef mstdnt_visibility_t uint8_t;
#endif /* MASTODONT_VISIBILITY_TYPES_H */