You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
455 B
C
21 lines
455 B
C
// Copyright 2021 Kumao Kobo (@kumaokobo)
|
|
// SPDX-License-Identifier: GPL-2.0+
|
|
|
|
#pragma once
|
|
|
|
#ifndef MOUSEKEY_INTERVAL
|
|
# define MOUSEKEY_INTERVAL 20
|
|
#endif
|
|
#ifndef MOUSEKEY_DELAY
|
|
# define MOUSEKEY_DELAY 0
|
|
#endif
|
|
#ifndef MOUSEKEY_TIME_TO_MAX
|
|
# define MOUSEKEY_TIME_TO_MAX 60
|
|
#endif
|
|
#ifndef MOUSEKEY_MAX_SPEED
|
|
# define MOUSEKEY_MAX_SPEED 7
|
|
#endif
|
|
#ifndef MOUSEKEY_WHEEL_DELAY
|
|
# define MOUSEKEY_WHEEL_DELAY 0
|
|
#endif
|