FSM/vscode/FSM_OOP/template/templateFSM.h

26 lines
409 B
C

#ifndef __TEMPLATE_FSM_H_
#define __TEMPLATE_FSM_H_
#define TemplateFSM_Input(pFSM) ((TemplateFSMIn *)_preloadIn((FSM *)pFSM))
typedef struct _templateFSMIn
{
int arrindex;
int x;
}TemplateFSMIn;
typedef struct _templateFSMData
{
TemplateFSMIn in;
int y1;
int inner1;
}TemplateFSMData;
typedef struct _TemplateFSM TemplateFSM;
TemplateFSM *createTemplateFSM();
#endif