aboutsummaryrefslogtreecommitdiff
path: root/tmk_core/common/host_driver.h
diff options
context:
space:
mode:
Diffstat (limited to 'tmk_core/common/host_driver.h')
-rw-r--r--tmk_core/common/host_driver.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/tmk_core/common/host_driver.h b/tmk_core/common/host_driver.h
index 3cfec40cc..f34a22053 100644
--- a/tmk_core/common/host_driver.h
+++ b/tmk_core/common/host_driver.h
@@ -15,8 +15,7 @@ You should have received a copy of the GNU General Public License
15along with this program. If not, see <http://www.gnu.org/licenses/>. 15along with this program. If not, see <http://www.gnu.org/licenses/>.
16*/ 16*/
17 17
18#ifndef HOST_DRIVER_H 18#pragma once
19#define HOST_DRIVER_H
20 19
21#include <stdint.h> 20#include <stdint.h>
22#include "report.h" 21#include "report.h"
@@ -31,5 +30,3 @@ typedef struct {
31 void (*send_system)(uint16_t); 30 void (*send_system)(uint16_t);
32 void (*send_consumer)(uint16_t); 31 void (*send_consumer)(uint16_t);
33} host_driver_t; 32} host_driver_t;
34
35#endif