ROFL-hal  v0.6.0dev
extensions.h
Go to the documentation of this file.
1 /* This Source Code Form is subject to the terms of the Mozilla Public
2  * License, v. 2.0. If a copy of the MPL was not distributed with this
3  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
4 
5 #ifndef HAL_EXTENSIONS_H
6 #define HAL_EXTENSIONS_H
7 
16 #include "../hal.h"
17 #include "../hal_utils.h"
18 
19 //Extension specific includes
20 #include "nf.h"
21 
22 //C++ extern C
23 HAL_BEGIN_DECLS
24 
25 typedef struct hal_extension_ops{
26 
27  //NF ports APIs
28  hal_nf_ext_ops_t nf_ports;
29 
30 }hal_extension_ops_t;
31 
32 //C++ extern C
33 HAL_END_DECLS
34 
35 #endif /* HAL_EXTENSIONS_H */
36