-
Notifications
You must be signed in to change notification settings - Fork 4
/
clicker.c
81 lines (66 loc) · 1.82 KB
/
clicker.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
/*
* xAutoClick
*
* Copyright (C) 2020 Arkadiy Illarionov
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
#include "clicker.h"
#ifdef HAVE_UDEV_CLICKER
#include "udevclicker.h"
#endif
#ifdef HAVE_X11_CLICKER
#include "x11clicker.h"
#endif
#include <stdlib.h>
typedef enum clicker_type_e {
CLICKER_UDEV = 0,
CLICKER_X11
} clicker_type_t;
static clicker_t* clicker_create(clicker_type_t type) {
clicker_t* clicker;
clicker = calloc(1, sizeof(clicker_t));
if (!clicker)
return NULL;
switch (type) {
#ifdef HAVE_UDEV_CLICKER
case CLICKER_UDEV: udev_clicker_init(clicker); break;
#endif
#ifdef HAVE_X11_CLICKER
case CLICKER_X11: x11_clicker_init(clicker); break;
#endif
default: break;
}
if (!clicker->ctx) {
free(clicker);
return NULL;
}
return clicker;
}
clicker_t* clicker_init(void) {
clicker_t* clicker;
clicker = clicker_create(CLICKER_UDEV);
if (clicker)
return clicker;
return clicker_create(CLICKER_X11);
}
void clicker_close(clicker_t* clicker) {
if (!clicker)
return;
if (clicker->close)
clicker->close(clicker->ctx);
free(clicker);
}