OSAPI  0.29
Open System API
common_types_lport.h
1 // *****************************************************************************************
2 //
3 // File description:
4 //
5 // Author: Joao Costa
6 // Purpose: Common declarations for UDP/TCP logical ports
7 //
8 // *****************************************************************************************
9 
10 #ifndef OSAPI_COMMON_TYPES_LPORT_H_
11 #define OSAPI_COMMON_TYPES_LPORT_H_
12 
13 // *****************************************************************************************
14 //
15 // Section: Import headers
16 //
17 // *****************************************************************************************
18 
19 // System headers
20 #include <stdbool.h>
21 
22 // OSAPI headers
23 #include "general/general_types.h"
24 #include "general/general_protocol.h"
25 
26 // Include own headers
27 
28 
29 // *****************************************************************************************
30 //
31 // Section: Macros/Constant definitions
32 //
33 // *****************************************************************************************
34 
35 
36 // *****************************************************************************************
37 //
38 // Section: Type definitions
39 //
40 // *****************************************************************************************
41 
42 
43 //typedef int t_address_type;
44 
46 {
47 
48 };
49 
50 typedef struct osapi_common_lport_S t_lport;
51 
52 
53 
54 #endif /* OSAPI_COMMON_TYPES_LPORT_H_ */
osapi_common_lport_S
Definition: common_types_lport.h:45