16 lines
249 B
C
16 lines
249 B
C
#ifndef DEV_DEV_H_
|
|
#define DEV_DEV_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
#define DEV_FNS_MAX 32
|
|
|
|
typedef int32_t (*DevFn)(uint8_t *buffer, size_t len, void *extra);
|
|
|
|
typedef struct Dev {
|
|
struct Dev *next;
|
|
DevFn fns[DEV_FNS_MAX];
|
|
} Dev;
|
|
|
|
#endif // DEV_DEV_H_
|