15 lines
227 B
C
15 lines
227 B
C
#ifndef APPINFO_MODEL_H
|
|
#define APPINFO_MODEL_H
|
|
|
|
#include "types.h"
|
|
|
|
typedef struct appinfo_model_t appinfo_model_t;
|
|
|
|
struct appinfo_model_t
|
|
{
|
|
uint8_t topName[32];
|
|
};
|
|
|
|
void AppInfoModel_Init(appinfo_model_t *model);
|
|
|
|
#endif |