File tree Expand file tree Collapse file tree 3 files changed +3
-22
lines changed Expand file tree Collapse file tree 3 files changed +3
-22
lines changed Original file line number Diff line number Diff line change 5
5
#include "os.h"
6
6
#include "keycode.h"
7
7
8
- #if defined(_MSC_VER )
9
- #include "ms_stdbool.h"
10
- #else
11
- #include <stdbool.h>
12
- #endif
8
+ #include <stdbool.h>
13
9
#ifdef __cplusplus
14
10
extern "C"
15
11
{
Original file line number Diff line number Diff line change 5
5
#include "os.h"
6
6
#include "types.h"
7
7
8
- #if defined(_MSC_VER )
9
- #include "ms_stdbool.h"
10
- #else
11
- #include <stdbool.h>
12
- #endif
8
+ #include <stdbool.h>
13
9
#ifdef __cplusplus
14
10
extern "C"
15
11
{
@@ -68,13 +64,6 @@ void moveMouse(MMPoint point);
68
64
* boundaries. */
69
65
void dragMouse (MMPoint point , const MMMouseButton button );
70
66
71
- /* Smoothly moves the mouse from the current position to the given point.
72
- * deadbeef_srand() should be called before using this function.
73
- *
74
- * Returns false if unsuccessful (i.e. a point was hit that is outside of the
75
- * screen boundaries), or true if successful. */
76
- bool smoothlyMoveMouse (MMPoint point );
77
-
78
67
/* Returns the coordinates of the mouse on the current screen. */
79
68
MMPoint getMousePos (void );
80
69
Original file line number Diff line number Diff line change 5
5
#include <stdint.h>
6
6
#include "types.h"
7
7
8
- #if defined(_MSC_VER )
9
- #include "ms_stdbool.h"
10
- #else
11
- #include <stdbool.h>
12
- #endif
8
+ #include <stdbool.h>
13
9
14
10
#ifdef __cplusplus
15
11
extern "C"
You can’t perform that action at this time.
0 commit comments