diff options
author | Henrik Rentz-Reichert | 2012-02-20 09:32:09 +0000 |
---|---|---|
committer | Henrik Rentz-Reichert | 2012-02-20 09:32:09 +0000 |
commit | c4a795f431f8ee844b48a56016a0a9ab02ad4dd3 (patch) | |
tree | c823dbf412cca7e9b207bb27078225df11c5d1a9 /runtime/org.eclipse.etrice.runtime.c/src/etActor.h | |
parent | 90088f94927e0583d8d00bc824e92addd72184bf (diff) | |
download | org.eclipse.etrice-c4a795f431f8ee844b48a56016a0a9ab02ad4dd3.tar.gz org.eclipse.etrice-c4a795f431f8ee844b48a56016a0a9ab02ad4dd3.tar.xz org.eclipse.etrice-c4a795f431f8ee844b48a56016a0a9ab02ad4dd3.zip |
[generator, generator.c, generator.java, runtime.c, runtime.java] unified code generation for Java and C including state machine generation
Diffstat (limited to 'runtime/org.eclipse.etrice.runtime.c/src/etActor.h')
-rw-r--r-- | runtime/org.eclipse.etrice.runtime.c/src/etActor.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/runtime/org.eclipse.etrice.runtime.c/src/etActor.h b/runtime/org.eclipse.etrice.runtime.c/src/etActor.h new file mode 100644 index 000000000..5cd70f694 --- /dev/null +++ b/runtime/org.eclipse.etrice.runtime.c/src/etActor.h @@ -0,0 +1,24 @@ +/*******************************************************************************
+ * Copyright (c) 2012 protos software gmbh (http://www.protos.de).
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * CONTRIBUTORS:
+ * Henrik Rentz-Reichert (initial contribution)
+ *
+ *******************************************************************************/
+
+#ifndef _ETACTOR_H_
+#define _ETACTOR_H_
+
+#include "etDataTypes.h"
+#include "etPort.h"
+
+#define NOT_CAUGHT 0
+#define EVT_SHIFT 100
+
+boolean handleSystemEvent(InterfaceItemBase ifitem, int evt, void* generic_data);
+
+#endif /* _ETACTOR_H_ */
|