-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmodule_unused.h
executable file
·44 lines (33 loc) · 1.23 KB
/
module_unused.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/**
* \file module_unused.h
*
* \brief dummy module
*
* Copyright (c) 2022 Martin Lampacher. All rights reserved.
*/
#ifndef _MODULE_UNUSED_H_
#define _MODULE_UNUSED_H_
/***********************************************************************************************************************
* Includes
**********************************************************************************************************************/
#include "std_types.h"
#ifdef __cplusplus
extern "C" {
#endif
/***********************************************************************************************************************
* Definitions
**********************************************************************************************************************/
typedef enum
{
E_MODULE_UNUSED_SOME_VALUE_0,
this_does_not_match_the_style,
} e_module_unused_a_enum;
#define MODULE_UNUSED_SMTH 0x0
/***********************************************************************************************************************
* Functions
**********************************************************************************************************************/
void module_unused_init (uint8 some_parameter);
#ifdef __cplusplus
}
#endif
#endif /* _MODULE_UNUSED_H_ */