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 |
| ... | ... |
@@ -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 |
| ... | ... |
@@ -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 |