16 lines
378 B
C
16 lines
378 B
C
#ifndef __FEATURE_DISPLAY_H__
|
|
#define __FEATURE_DISPLAY_H__
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "app.h"
|
|
#include "feature.h"
|
|
|
|
int32_t display_init(AppInfoT *appInfo, uint32_t reserved1, uint32_t reserved2, uint32_t syscallTable);
|
|
int32_t display_proc(AppInfoT *appInfo,AppMsgT *msg, uint32_t reserved2, uint32_t syscallTable);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif |