mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-04 04:06:06 -05:00
15 lines
271 B
C
15 lines
271 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <tllist.h>
|
||
|
|
|
||
|
|
struct user_notification {
|
||
|
|
enum {
|
||
|
|
USER_NOTIFICATION_DEPRECATED,
|
||
|
|
USER_NOTIFICATION_WARNING,
|
||
|
|
USER_NOTIFICATION_ERROR,
|
||
|
|
} kind;
|
||
|
|
char *text;
|
||
|
|
};
|
||
|
|
|
||
|
|
typedef tll(struct user_notification) user_notifications_t;
|