Add GET_CLIPBOARD device event

Add the first device event, used to forward the device clipboard to the
computer.
This commit is contained in:
Romain Vimont 2019-05-30 00:24:26 +02:00
commit f9d2d99166
5 changed files with 141 additions and 0 deletions

View file

@ -6,6 +6,7 @@ src = [
'src/convert.c',
'src/decoder.c',
'src/device.c',
'src/device_event.c',
'src/file_handler.c',
'src/fps_counter.c',
'src/input_manager.c',
@ -162,6 +163,10 @@ tests = [
'src/control_event.c',
'src/str_util.c'
]],
['test_device_event_deserialize', [
'tests/test_device_event_deserialize.c',
'src/device_event.c'
]],
['test_strutil', [
'tests/test_strutil.c',
'src/str_util.c'