Moved UI from C to Vala

Multiple changes coming with that
Massive cleanup
This commit is contained in:
2023-11-22 11:37:04 +01:00
parent 5ab6aefa49
commit ee60060dc6
24 changed files with 527 additions and 1021 deletions

View File

@@ -15,11 +15,11 @@ void device_init();
array_t* device_get_array();
// Handling a single device
void* device_handle(device_t* device);
void* device_driver(device_t* device);
device_t* device_register(void* driver, void* handle);
char* device_get_image(device_t* device);
char* device_get_name(device_t* device);
device_capacity_t device_get_capacity(device_t* device);
char* device_get_manufacturer(device_t* device);
int device_mouse_get(device_t* device, struct MOUSE* output);
#endif