nRF Connect SDK API 0.1.0
Loading...
Searching...
No Matches
event_proxy.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2024 Nordic Semiconductor ASA
3 *
4 * SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
5 */
6
7#ifndef _EVENT_PROXY_H_
8#define _EVENT_PROXY_H_
9
10#include <zephyr/device.h>
11
13 const struct device *ipc;
14 size_t events_cnt;
15 const struct event_type **events;
16};
17
18#endif /* _EVENT_PROXY_H_ */
const struct event_type ** events
Definition: event_proxy.h:15
const struct device * ipc
Definition: event_proxy.h:13
size_t events_cnt
Definition: event_proxy.h:14
Definition: event_proxy.h:12