]> git.donarmstrong.com Git - qmk_firmware.git/blobdiff - quantum/quantum.h
fix mousekey call
[qmk_firmware.git] / quantum / quantum.h
index 2238464124b5d9100ddd9057f14021496459c6a7..b4e4de1743f1d388828dc6d893b30cb551802e56 100644 (file)
 #ifdef BACKLIGHT_ENABLE
     #include "backlight.h"
 #endif
-#if !defined(RGBLIGHT_ENABLE) && !defined(RGB_MATRIX_ENABLE) 
-       #include "rgb.h"
+#if !defined(RGBLIGHT_ENABLE) && !defined(RGB_MATRIX_ENABLE)
+    #include "rgb.h"
 #endif
 #ifdef RGBLIGHT_ENABLE
   #include "rgblight.h"
 #endif
+
+#ifdef SPLIT_KEYBOARD
+    #include "split_flags.h"
+#endif
+
 #ifdef RGB_MATRIX_ENABLE
-       #include "rgb_matrix.h"
+    #include "rgb_matrix.h"
 #endif
+
 #include "action_layer.h"
 #include "eeconfig.h"
 #include <stddef.h>
 #include <stdlib.h>
 #include "print.h"
 #include "send_string_keycodes.h"
+#include "suspend.h"
 
 extern uint32_t default_layer_state;
 
 #ifndef NO_ACTION_LAYER
-       extern uint32_t layer_state;
+    extern uint32_t layer_state;
 #endif
 
 #ifdef MIDI_ENABLE
 #ifdef MIDI_ADVANCED
-       #include "process_midi.h"
+    #include "process_midi.h"
 #endif
 #endif // MIDI_ENABLE
 
 #ifdef AUDIO_ENABLE
-       #include "audio.h"
-       #include "process_audio.h"
+    #include "audio.h"
+    #include "process_audio.h"
   #ifdef AUDIO_CLICKY
     #include "process_clicky.h"
   #endif // AUDIO_CLICKY
 #endif
 
 #ifdef STENO_ENABLE
-       #include "process_steno.h"
+    #include "process_steno.h"
 #endif
 
 #if defined(AUDIO_ENABLE) || (defined(MIDI_ENABLE) && defined(MIDI_BASIC))
-       #include "process_music.h"
+    #include "process_music.h"
 #endif
 
 #ifndef DISABLE_LEADER
-       #include "process_leader.h"
+    #include "process_leader.h"
 #endif
 
 #define DISABLE_CHORDING
 #ifndef DISABLE_CHORDING
-       #include "process_chording.h"
+    #include "process_chording.h"
 #endif
 
 #ifdef UNICODE_ENABLE
-       #include "process_unicode.h"
+    #include "process_unicode.h"
 #endif
 
 #ifdef UCIS_ENABLE
-       #include "process_ucis.h"
+    #include "process_ucis.h"
 #endif
 
 #ifdef UNICODEMAP_ENABLE
-       #include "process_unicodemap.h"
+    #include "process_unicodemap.h"
 #endif
 
 #include "process_tap_dance.h"
 
 #ifdef PRINTING_ENABLE
-       #include "process_printer.h"
+    #include "process_printer.h"
 #endif
 
 #ifdef AUTO_SHIFT_ENABLE
-       #include "process_auto_shift.h"
+    #include "process_auto_shift.h"
 #endif
 
 #ifdef COMBO_ENABLE
-       #include "process_combo.h"
+    #include "process_combo.h"
 #endif
 
 #ifdef KEY_LOCK_ENABLE
-       #include "process_key_lock.h"
+    #include "process_key_lock.h"
 #endif
 
 #ifdef TERMINAL_ENABLE
-       #include "process_terminal.h"
+    #include "process_terminal.h"
 #else
-       #include "process_terminal_nop.h"
+    #include "process_terminal_nop.h"
 #endif
 
 #ifdef HD44780_ENABLE
-       #include "hd44780.h"
+    #include "hd44780.h"
 #endif
 
 #define STRINGIZE(z) #z