mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-20 15:35:05 +00:00
17 lines
312 B
C++
17 lines
312 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,
|
|
.device_type = nullptr,
|
|
.internal = { 0 }
|
|
};
|
|
|
|
}
|