aboutsummaryrefslogtreecommitdiffstats
path: root/src/types.h
diff options
context:
space:
mode:
authorConfuSomu2022-12-28 19:28:01 -0500
committerConfuSomu2022-12-28 19:28:01 -0500
commit1b201ea3a4821a44887202692e9c77961c163a57 (patch)
treefda563859174d5a35560b5fdb2d217cc09911fc3 /src/types.h
parentc0cf3a1d0b4ff74ad43d0489631d4b9582b72d81 (diff)
downloadActorViewer-1b201ea3a4821a44887202692e9c77961c163a57.tar
ActorViewer-1b201ea3a4821a44887202692e9c77961c163a57.tar.gz
ActorViewer-1b201ea3a4821a44887202692e9c77961c163a57.zip
Determine status type
Diffstat (limited to 'src/types.h')
-rw-r--r--src/types.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/types.h b/src/types.h
index b78c564..15c3f08 100644
--- a/src/types.h
+++ b/src/types.h
@@ -9,8 +9,10 @@ struct ViewStatusTypes {
};
enum StatusType {
+ UNKNOWN = 0,
PUBLIC,
UNLISTED,
PRIVATE,
- DIRECT
+ DIRECT,
+ REBLOG
};