master
1/*-
2 * SPDX-License-Identifier: BSD-2-Clause
3 *
4 * Copyright (c) 2024 Beckhoff Automation GmbH & Co. KG
5 *
6 */
7
8#ifndef _SYS_SPLASH_H_
9#define _SYS_SPLASH_H_
10
11#include <sys/types.h>
12
13struct splash_info {
14 uint32_t si_width;
15 uint32_t si_height;
16 uint32_t si_depth;
17};
18
19#endif /* _SYS_SPLASH_H_ */