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 MENU = 0,
26
27} context_t;
28
29// When changing the enum, also change the corresponding strings
30// in the .c file!
31extern const char *context_strings[];
32
34
35#endif
context_t
UI context definition.
Definition context.h:22
@ MENU
Definition context.h:23
@ READING
Definition context.h:24
@ SETTINGS
Definition context.h:25