]> git.donarmstrong.com Git - qmk_firmware.git/blobdiff - quantum/quantum.h
Make room for 'loose keycodes' by halving UNICODE_MAP range
[qmk_firmware.git] / quantum / quantum.h
index 3d35f11fadb4c0f5855a5002cf27a50285a824d1..18f072189d7b5f5a3ff3bdd9be325e6e8d322ebb 100644 (file)
@@ -15,7 +15,6 @@
 #ifdef RGBLIGHT_ENABLE
   #include "rgblight.h"
 #endif
-
 #include "action_layer.h"
 #include "eeconfig.h"
 #include <stddef.h>
@@ -63,6 +62,10 @@ extern uint32_t default_layer_state;
        #include "process_printer.h"
 #endif
 
+#ifdef COMBO_ENABLE
+       #include "process_combo.h"
+#endif
+
 #define SEND_STRING(str) send_string(PSTR(str))
 void send_string(const char *str);
 
@@ -119,4 +122,6 @@ void send_nibble(uint8_t number);
 void led_set_user(uint8_t usb_led);
 void led_set_kb(uint8_t usb_led);
 
+void api_send_unicode(uint32_t unicode);
+
 #endif