2018-11-21 01:27:05 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <windows.h>
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#include "hook/iobuf.h"
|
|
|
|
|
|
|
|
struct sg_led_ops {
|
|
|
|
HRESULT (*reset)(void *ctx);
|
2019-02-26 02:55:49 +00:00
|
|
|
void (*set_color)(void *ctx, uint8_t r, uint8_t g, uint8_t b);
|
2018-11-21 01:27:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct sg_led {
|
|
|
|
const struct sg_led_ops *ops;
|
|
|
|
void *ops_ctx;
|
|
|
|
uint8_t addr;
|
|
|
|
};
|
|
|
|
|
|
|
|
void sg_led_init(
|
|
|
|
struct sg_led *led,
|
|
|
|
uint8_t addr,
|
|
|
|
const struct sg_led_ops *ops,
|
|
|
|
void *ctx);
|
|
|
|
|
|
|
|
void sg_led_transact(
|
|
|
|
struct sg_led *led,
|
|
|
|
struct iobuf *resp_frame,
|
|
|
|
const void *req_bytes,
|
|
|
|
size_t req_nbytes);
|