ZEReader 0.1.0
A Zephyr-based E-Book-Reader
Loading...
Searching...
No Matches
context.h
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2025 Anna-Lena Marx <mail@marx.engineer>
3 *
4 * SPDX-License-Identifier: MPL-2.0
5 */
6
7#ifndef _CONTEXT_H_
8#define _CONTEXT_H_
9
17
21typedef enum
22{
23#define CONTEXT(name) CONTEXT_##name,
24#include <ui/context/context_def.h>
25#undef CONTEXT
26} context_t;
27
28extern const char *const context_strings[];
29
31
32#endif
context_t
UI context definition.
Definition context.h:22