Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: c910fc0a197c8f73f05c603c30d23b0f59cb54e2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/**
 * @author generated by eTrice
 *
 * Header File of SubSystemClass RemoveCommentSubSys
 * 
 */

#ifndef _REMOVECOMMENTSUBSYS_H_
#define _REMOVECOMMENTSUBSYS_H_



/* lifecycle functions
 * init -> start -> run (loop) -> stop -> destroy
 */

void RemoveCommentSubSys_init(void);		/* lifecycle init  	 */
void RemoveCommentSubSys_start(void);	/* lifecycle start 	 */

void RemoveCommentSubSys_run(void);		/* lifecycle run 	 */

void RemoveCommentSubSys_stop(void); 	/* lifecycle stop	 */
void RemoveCommentSubSys_destroy(void); 	/* lifecycle destroy */

void SubSysClass_shutdown(void);  /* shutdown the dispatcher loop */


#endif /* _REMOVECOMMENTSUBSYS_H_ */


Back to the top