1 /*
2  * Copyright (c) 2024 Nordic Semiconductor ASA
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #ifndef NRFS_CTX_H
8 #define NRFS_CTX_H
9 
10 #include <nrfs_common.h>
11 
12 #ifdef __cplusplus
13 extern "C" {
14 #endif
15 
16 typedef struct __NRFS_PACKED {
17 	uint32_t ctx;
18 } nrfs_ctx_t;
19 
20 #ifdef __cplusplus
21 }
22 #endif
23 
24 #endif /* NRFS_CTX_H */
25