move internal includes
Stefan Schuermans

Stefan Schuermans commited on 2017-09-24 08:51:47
Showing 18 changed files, with 32 additions and 32 deletions.


move internal include files out of public include dir
put intern include files into into src dir
... ...
@@ -24,15 +24,15 @@
24 24
 
25 25
 #include <etherpix/msg.h>
26 26
 #include <etherpix/types.h>
27
-#include <intern/const_data.h>
28
-#include <intern/constants.h>
29
-#include <intern/config.h>
30
-#include <intern/mapping.h>
31
-#include <intern/missing.h>
32
-#include <intern/net.h>
33
-#include <intern/parse.h>
34
-#include <intern/strtod_noloc.h>
35
-#include <intern/types.h>
27
+#include "const_data.h"
28
+#include "constants.h"
29
+#include "config.h"
30
+#include "mapping.h"
31
+#include "missing.h"
32
+#include "net.h"
33
+#include "parse.h"
34
+#include "strtod_noloc.h"
35
+#include "types.h"
36 36
 
37 37
 /**
38 38
  * \brief process distributor from config file
... ...
@@ -22,7 +22,7 @@
22 22
 
23 23
 #include <etherpix/msg.h>
24 24
 #include <etherpix/types.h>
25
-#include <intern/types.h>
25
+#include "types.h"
26 26
 
27 27
 /** context information for processing config file */
28 28
 typedef struct etp_config_ctx_s
... ...
@@ -18,8 +18,8 @@
18 18
  */
19 19
 
20 20
 #include <etherpix/types.h>
21
-#include <intern/const_data.h>
22
-#include <intern/types.h>
21
+#include "const_data.h"
22
+#include "types.h"
23 23
 
24 24
 /** data of MCUF header */
25 25
 const etp_u8_t etp_mcuf_hdr[ETP_MCUF_HDR_LEN] = {
... ...
@@ -21,7 +21,7 @@
21 21
 #define ETP_CONST_DATA_H
22 22
 
23 23
 #include <etherpix/types.h>
24
-#include <intern/types.h>
24
+#include "types.h"
25 25
 
26 26
 /** data of MCUF header */
27 27
 extern const etp_u8_t etp_mcuf_hdr[ETP_MCUF_HDR_LEN];
... ...
@@ -24,10 +24,10 @@
24 24
 #include <etherpix/display.h>
25 25
 #include <etherpix/msg.h>
26 26
 #include <etherpix/types.h>
27
-#include <intern/config.h>
28
-#include <intern/constants.h>
29
-#include <intern/net.h>
30
-#include <intern/types.h>
27
+#include "config.h"
28
+#include "constants.h"
29
+#include "net.h"
30
+#include "types.h"
31 31
 
32 32
 /**
33 33
  * \brief create a new EtherPix display
... ...
@@ -20,14 +20,14 @@
20 20
 #include <sys/time.h>
21 21
 #include <stdlib.h>
22 22
 
23
-#include <intern/net.h> // first because of winsock2.h ordering
23
+#include "net.h" // first because of winsock2.h ordering
24 24
 #include <etherpix/display.h>
25 25
 #include <etherpix/displayer.h>
26 26
 #include <etherpix/msg.h>
27 27
 #include <etherpix/types.h>
28
-#include <intern/displayer.h>
29
-#include <intern/thread.h>
30
-#include <intern/types.h>
28
+#include "displayer.h"
29
+#include "thread.h"
30
+#include "types.h"
31 31
 
32 32
 /**
33 33
  * \brief create a new EtherPix displayer
... ...
@@ -20,7 +20,7 @@
20 20
 #ifndef ETP_DISPLAYER_H
21 21
 #define ETP_DISPLAYER_H
22 22
 
23
-#include <intern/thread.h>
23
+#include "thread.h"
24 24
 
25 25
 /**
26 26
  * \brief output thread of displayer object
... ...
@@ -20,8 +20,8 @@
20 20
 #include <math.h>
21 21
 
22 22
 #include <etherpix/types.h>
23
-#include <intern/mapping.h>
24
-#include <intern/types.h>
23
+#include "mapping.h"
24
+#include "types.h"
25 25
 
26 26
 /**
27 27
  * \brief precalculate mapping table
... ...
@@ -20,7 +20,7 @@
20 20
 #ifndef ETP_MAPPING_H
21 21
 #define ETP_MAPPING_H
22 22
 
23
-#include <intern/types.h>
23
+#include "types.h"
24 24
 
25 25
 /**
26 26
  * \brief precalculate mapping table
... ...
@@ -20,8 +20,8 @@
20 20
 #include <stdlib.h>
21 21
 #include <string.h>
22 22
 
23
-#include <intern/net.h>
24
-#include <intern/parse.h>
23
+#include "net.h"
24
+#include "parse.h"
25 25
 
26 26
 /**
27 27
  * \brief parse two comma-separated numbers
... ...
@@ -20,7 +20,7 @@
20 20
 #ifndef ETP_PARSE_H
21 21
 #define ETP_PARSE_H
22 22
 
23
-#include <intern/net.h>
23
+#include "net.h"
24 24
 
25 25
 /**
26 26
  * \brief parse two comma-separated numbers
... ...
@@ -19,7 +19,7 @@
19 19
 
20 20
 #include <math.h>
21 21
 
22
-#include <intern/strtod_noloc.h>
22
+#include "strtod_noloc.h"
23 23
 
24 24
 /**
25 25
  * \brief own version of strtod ignoring locale
... ...
@@ -21,9 +21,9 @@
21 21
 #define ETP_TYPES_H
22 22
 
23 23
 #include <etherpix/types.h>
24
-#include <intern/constants.h>
25
-#include <intern/net.h>
26
-#include <intern/thread.h>
24
+#include "constants.h"
25
+#include "net.h"
26
+#include "thread.h"
27 27
 
28 28
 /** mapping information
29 29
  *
30 30