2026-01-21 19:59:05 +01:00

16 lines
284 B
C++

#include <Tactility/drivers/Root.h>
#include <Tactility/Driver.h>
extern "C" {
Driver root_driver = {
.name = "root",
.compatible = (const char*[]) { "root", nullptr },
.start_device = nullptr,
.stop_device = nullptr,
.api = nullptr,
.internal = { 0 }
};
}