summaryrefslogtreecommitdiff
path: root/cesar/lib/visual_state_api/src/SEMInst.c
diff options
context:
space:
mode:
Diffstat (limited to 'cesar/lib/visual_state_api/src/SEMInst.c')
-rw-r--r--cesar/lib/visual_state_api/src/SEMInst.c33
1 files changed, 33 insertions, 0 deletions
diff --git a/cesar/lib/visual_state_api/src/SEMInst.c b/cesar/lib/visual_state_api/src/SEMInst.c
new file mode 100644
index 0000000000..ddd32600ba
--- /dev/null
+++ b/cesar/lib/visual_state_api/src/SEMInst.c
@@ -0,0 +1,33 @@
+/*
+ * Type: Source Code File
+ *
+ * Id: SEMInst.c
+ *
+ * Function: Contains the SEM_InitInstances and SEM_SetInstance
+ SEM Library Expert version 4 function.
+ *
+ * Portability: ANSI-C Compiler.
+ *
+ * Copyright (c) 1999-2006 IAR Systems. All rights reserved.
+ */
+
+/*
+ * Version ! Date ! Status ! Changes
+ *----------------------------------------------------------------------------
+ * 4.0.0.1 ! 021298 ! Closed ! -
+ * 4.0.4 ! 010799 ! Closed ! Minor update, there might be no changes to this particular file.
+ */
+
+#include "SEMLibE.h"
+
+
+unsigned char VS_CALL_CONV SEM_InitInstances (void)
+{
+ return (SMP_InitInstances (SEMContext));
+}
+
+
+unsigned char VS_CALL_CONV SEM_SetInstance (SEM_INSTANCE_TYPE Instance)
+{
+ return (SMP_SetInstance (SEMContext, Instance));
+}