Make core/ includes absolute, remove subfolders from include path

This allows more consistency in the manner we include core headers,
where previously there would be a mix of absolute, relative and
include path-dependent includes.
This commit is contained in:
Rémi Verschelde
2018-09-11 18:13:45 +02:00
parent cc71012266
commit 277b24dfb7
873 changed files with 2119 additions and 2027 deletions

View File

@ -30,11 +30,12 @@
#ifdef ALSAMIDI_ENABLED
#include <errno.h>
#include "alsa_midi.h"
#include "os/os.h"
#include "print_string.h"
#include "core/os/os.h"
#include "core/print_string.h"
#include <errno.h>
static int get_message_size(uint8_t message) {
switch (message & 0xF0) {

View File

@ -33,13 +33,13 @@
#ifndef ALSA_MIDI_H
#define ALSA_MIDI_H
#include <alsa/asoundlib.h>
#include <stdio.h>
#include "core/os/midi_driver.h"
#include "core/os/mutex.h"
#include "core/os/thread.h"
#include "core/vector.h"
#include "os/midi_driver.h"
#include <alsa/asoundlib.h>
#include <stdio.h>
class MIDIDriverALSAMidi : public MIDIDriver {