diff options
| author | Felix Morgner <felix.morgner@gmail.com> | 2025-05-12 13:10:48 +0200 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@gmail.com> | 2025-05-12 13:10:48 +0200 |
| commit | 45ef4948db670224c7cc727507f84924bd826002 (patch) | |
| tree | 45ab5e37a3cb062f4276e8b1456cb5397e58eddc /core/include/turns/turns-disposition.h | |
| parent | cf6951bbfe99bf494f22c1b1d02fb6a8f45e73a9 (diff) | |
| download | turns-45ef4948db670224c7cc727507f84924bd826002.tar.xz turns-45ef4948db670224c7cc727507f84924bd826002.zip | |
core: begin c-style API
Diffstat (limited to 'core/include/turns/turns-disposition.h')
| -rw-r--r-- | core/include/turns/turns-disposition.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/core/include/turns/turns-disposition.h b/core/include/turns/turns-disposition.h new file mode 100644 index 0000000..c5bb174 --- /dev/null +++ b/core/include/turns/turns-disposition.h @@ -0,0 +1,18 @@ +#ifndef TURNS_DISPOSITION_H +#define TURNS_DISPOSITION_H + +#include <glib-object.h> + +G_BEGIN_DECLS + +typedef enum +{ + TURNS_DISPOSITION_NEUTRAL, + TURNS_DISPOSITION_FRIENDLY, + TURNS_DISPOSITION_HOSTILE, + TURNS_DISPOSITION_SECRET, +} TurnsDisposition; + +G_END_DECLS + +#endif |
