16 lines
238 B
C
16 lines
238 B
C
#ifndef YC_MODEL_H
|
|
#define YC_MODEL_H
|
|
|
|
#include "types.h"
|
|
|
|
typedef struct model_t model_t;
|
|
|
|
typedef struct model_t {
|
|
const uint8_t *topName;
|
|
uint16_t wGroup;
|
|
uint16_t wPage;
|
|
} model_t;
|
|
|
|
void Model_Init(model_t *model);
|
|
|
|
#endif |