Files
tactility/Devices/cyd-2432s024r/source/module.cpp
T
2026-07-20 23:43:17 +02:00

15 lines
297 B
C++

#include <tactility/error.h>
#include <tactility/module.h>
extern "C" {
struct Module cyd_2432s024r_module = {
.name = "cyd-2432s024r",
.start = [] -> error_t { return ERROR_NONE; },
.stop = [] -> error_t { return ERROR_NONE; },
.symbols = nullptr,
.internal = nullptr
};
}