Added device_array, array util, list mainwindow

This commit is contained in:
2023-09-18 23:55:59 +02:00
parent e231246400
commit 53d65a235a
8 changed files with 155 additions and 16 deletions

View File

@@ -1,8 +1,16 @@
#ifndef DEVICE_H
#define DEVICE_H
#include <stdlib.h>
#include "utils/array.h"
typedef struct DEVICE device_t;
// Device layer
void device_init();
array_t* device_get_array();
// Handling a single device
char* device_get_image(device_t* device);
char* device_get_name(device_t* device);