2017-05-31 12:35:32 +00:00
|
|
|
#ifndef HMI_PROCESS_H_INCLUDED
|
|
|
|
#define HMI_PROCESS_H_INCLUDED
|
|
|
|
#include "HMI_Data.h"
|
2017-06-02 12:33:13 +00:00
|
|
|
#include <stdio.h>
|
2017-05-31 12:35:32 +00:00
|
|
|
|
|
|
|
void HMI_Action_Initialize(void);
|
|
|
|
int32_t HMI_Action_UserActions(uint16_t uiOptions, uint16_t* uiActions);
|
2017-06-02 12:33:13 +00:00
|
|
|
int32_t HMI_Action_RefreshScreen(uint32_t uiScreenID, void* pstData);
|
|
|
|
void HMI_Action_GotoScreen(uint32_t uiCurrentScreenID, uint32_t uiDestScreenID, void* pstPreProcessData);
|
|
|
|
void HMI_Action_GoBack(void);
|
2017-05-31 12:35:32 +00:00
|
|
|
#endif // HMI_PROCESS_H_INCLUDED
|