15 lines
286 B
C++
15 lines
286 B
C++
#include <tactility/error.h>
|
|
#include <tactility/module.h>
|
|
|
|
extern "C" {
|
|
|
|
Module cyd_e32r28t_module = {
|
|
.name = "cyd-e32r28t",
|
|
.start = [] -> error_t { return ERROR_NONE; },
|
|
.stop = [] -> error_t { return ERROR_NONE; },
|
|
.symbols = nullptr,
|
|
.internal = nullptr
|
|
};
|
|
|
|
}
|