]> gerrit.simantics Code Review - simantics/fmil.git/blobdiff - org.simantics.fmil.core/native/FMILibrary/src/Import/src/FMI1/fmi1_import_capabilities.c
Add FMILibrary-2.0.3 to org.simantics.fmil.core\native.
[simantics/fmil.git] / org.simantics.fmil.core / native / FMILibrary / src / Import / src / FMI1 / fmi1_import_capabilities.c
diff --git a/org.simantics.fmil.core/native/FMILibrary/src/Import/src/FMI1/fmi1_import_capabilities.c b/org.simantics.fmil.core/native/FMILibrary/src/Import/src/FMI1/fmi1_import_capabilities.c
new file mode 100644 (file)
index 0000000..fca4bf6
--- /dev/null
@@ -0,0 +1,44 @@
+/*
+    Copyright (C) 2012 Modelon AB
+
+    This program is free software: you can redistribute it and/or modify
+    it under the terms of the BSD style license.
+
+     This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    FMILIB_License.txt file for more details.
+
+    You should have received a copy of the FMILIB_License.txt file
+    along with this program. If not, contact Modelon AB <http://www.modelon.com>.
+*/
+
+#include "fmi1_import_impl.h"
+
+int fmi1_import_get_canHandleVariableCommunicationStepSize(fmi1_import_capabilities_t* c ) {
+    return fmi1_xml_get_canHandleVariableCommunicationStepSize(c);
+}
+int fmi1_import_get_canHandleEvents(fmi1_import_capabilities_t* c ) {
+    return fmi1_xml_get_canHandleEvents(c);
+}
+int fmi1_import_get_canRejectSteps(fmi1_import_capabilities_t* c ) {
+    return fmi1_xml_get_canRejectSteps( c );
+}
+int fmi1_import_get_canInterpolateInputs(fmi1_import_capabilities_t* c ) {
+    return fmi1_xml_get_canInterpolateInputs(c);
+}
+unsigned int fmi1_import_get_maxOutputDerivativeOrder(fmi1_import_capabilities_t* c ) {
+    return fmi1_xml_get_maxOutputDerivativeOrder(c);
+}
+int fmi1_import_get_canRunAsynchronuously(fmi1_import_capabilities_t* c ) {
+    return fmi1_xml_get_canRunAsynchronuously(c);
+}
+int fmi1_import_get_canSignalEvents(fmi1_import_capabilities_t* c ) {
+    return fmi1_xml_get_canSignalEvents(c);
+}
+int fmi1_import_get_canBeInstantiatedOnlyOncePerProcess(fmi1_import_capabilities_t* c ) {
+    return fmi1_xml_get_canBeInstantiatedOnlyOncePerProcess(c);
+}
+int fmi1_import_get_canNotUseMemoryManagementFunctions(fmi1_import_capabilities_t* c ) {
+    return fmi1_xml_get_canNotUseMemoryManagementFunctions(c);
+}