summaryrefslogtreecommitdiff
path: root/toxav/msi.h
diff options
context:
space:
mode:
authoriphydf <iphydf@users.noreply.github.com>2016-09-11 15:47:51 +0100
committeriphydf <iphydf@users.noreply.github.com>2016-09-13 00:32:02 +0100
commit0aa2840164fc782f150cd45f8668ca623e6002cf (patch)
tree68d4b762c6233946fc3e73af546e2a5a5f6cdb16 /toxav/msi.h
parent2b2dc07f6f7fe28a8e558125d977d2fa9cef3881 (diff)
Group #include directives in 3-4 groups.
1. Current module (if C file). 2. Headers from current library. 3. Headers from other library (e.g. toxcore includes in toxav). 4. System headers.
Diffstat (limited to 'toxav/msi.h')
-rw-r--r--toxav/msi.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/toxav/msi.h b/toxav/msi.h
index 8cb47384..f69e67ef 100644
--- a/toxav/msi.h
+++ b/toxav/msi.h
@@ -22,13 +22,14 @@
22#ifndef MSI_H 22#ifndef MSI_H
23#define MSI_H 23#define MSI_H
24 24
25#include <inttypes.h>
26#include <pthread.h>
27
28#include "../toxcore/Messenger.h"
29#include "audio.h" 25#include "audio.h"
30#include "video.h" 26#include "video.h"
31 27
28#include "../toxcore/Messenger.h"
29
30#include <inttypes.h>
31#include <pthread.h>
32
32/** 33/**
33 * Error codes. 34 * Error codes.
34 */ 35 */