Files
DTU-HMI/src/Drv/pages/AppInfo/view.h

17 lines
314 B
C

#ifndef APPINFO_VIEW_H
#define APPINFO_VIEW_H
#include "types.h"
#include "Drv/pages/AppInfo/def.h"
#include "Drv/pages/global/renderer_lcd.h"
typedef struct appinfo_view_t appinfo_view_t;
struct appinfo_view_t
{
void (*show_top_name)(uint8_t *name);
};
void AppInfoView_Init(appinfo_view_t *view);
#endif