Added mouse panel, dummy device representation

This commit is contained in:
2023-09-12 21:59:13 +02:00
parent 10d037819e
commit ad5cef35d4
7 changed files with 105 additions and 3 deletions

9
src/device/device.h Normal file
View File

@@ -0,0 +1,9 @@
#ifndef DEVICE_H
#define DEVICE_H
typedef struct DEVICE device_t;
char* device_get_image(device_t* device);
char* device_get_name(device_t* device);
#endif