aime, vfd: updated and improved

This commit is contained in:
2024-10-06 20:37:20 +02:00
parent fadbd0d2bf
commit bfa5d0dd6e
32 changed files with 808 additions and 54 deletions

View File

@ -25,6 +25,13 @@ struct sg_res_header {
uint8_t payload_len;
};
/* struct to save the version string with its length
to fix NUL terminator issues */
struct version_info {
const char *version;
uint8_t length;
};
typedef HRESULT (*sg_dispatch_fn_t)(
void *ctx,
const void *req,