FSM/vscode/FSM_OOP/childtest/parentFSM.h

16 lines
275 B
C

#ifndef __PARENT_FSM_H_
#define __PARENT_FSM_H_
#define ParentFSM_Input(pFSM) ((ParentFSMData *)_preloadIn((FSM *)pFSM))
typedef struct _parentFSMData
{
int arrindex;
}ParentFSMData;
typedef struct _ParentFSM ParentFSM;
ParentFSM *createParentFSM();
#endif