-
Notifications
You must be signed in to change notification settings - Fork 0
/
obj_func.h
31 lines (22 loc) · 1.03 KB
/
obj_func.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
#ifndef _OBJ_FUNC_H_
#define _OBJ_FUNC_H_
/*******************************************************************************
* Includes
******************************************************************************/
#include <stdbool.h>
#include <stdint.h>
/*******************************************************************************
* Macros
******************************************************************************/
#define OBJ_FUNC_NAME "Function"
/*******************************************************************************
* Types
******************************************************************************/
/*******************************************************************************
* Variables
******************************************************************************/
extern const void *OBJ_FUNC_FUNC[];
/*******************************************************************************
* Prototypes
******************************************************************************/
#endif /* _OBJ_FUNC_H_ */