Loading...
Searching...
No Matches
os_dev.h
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2020 Inria
3 * SPDX-License-Identifier: LGPL-2.1-only
4 */
5
6#pragma once
7
18
19#ifdef __cplusplus
20extern "C" {
21#endif
22
26struct os_dev {
27};
28
32#define OS_DEV_SETHANDLERS(__dev, __open, __close) \
33 (void) __dev; \
34 (void) __open; \
35 (void) __close;
36
37#ifdef __cplusplus
38}
39#endif
Device structure.
Definition os_dev.h:26