summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJin^eLD <jin@mediatomb.cc>2013-10-28 13:15:59 +0100
committerJin^eLD <jin@mediatomb.cc>2013-10-28 13:15:59 +0100
commit4c6dc7a3b74ee720801d1259e4f498b19d343de6 (patch)
tree83584d3ec775e959b504e7e74332ed2a95ed48c6
parentd2ab13c61121fd14bbb2edc4406eaf807bbab3ec (diff)
Public headers should not have any internal references
-rw-r--r--toxmsi/toxmsi.h2
-rw-r--r--toxrtp/toxrtp.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/toxmsi/toxmsi.h b/toxmsi/toxmsi.h
index 69d5144a..d8985c64 100644
--- a/toxmsi/toxmsi.h
+++ b/toxmsi/toxmsi.h
@@ -28,7 +28,7 @@
28#define _MSI_IMPL_H_ 28#define _MSI_IMPL_H_
29 29
30#include <inttypes.h> 30#include <inttypes.h>
31#include "../toxcore/tox.h" 31#include "tox.h"
32#include <pthread.h> 32#include <pthread.h>
33 33
34#define MCBTYPE void 34#define MCBTYPE void
diff --git a/toxrtp/toxrtp.h b/toxrtp/toxrtp.h
index 44717835..0aa89993 100644
--- a/toxrtp/toxrtp.h
+++ b/toxrtp/toxrtp.h
@@ -30,7 +30,7 @@
30 30
31#define RTP_VERSION 2 31#define RTP_VERSION 2
32#include <inttypes.h> 32#include <inttypes.h>
33#include "../toxcore/tox.h" 33#include "tox.h"
34#include <pthread.h> 34#include <pthread.h>
35/* Extension header flags */ 35/* Extension header flags */
36#define RTP_EXT_TYPE_RESOLUTION 0x01 36#define RTP_EXT_TYPE_RESOLUTION 0x01