]> gerrit.simantics Code Review - simantics/fmil.git/blob - 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
1 /*
2     Copyright (C) 2012 Modelon AB
3
4     This program is free software: you can redistribute it and/or modify
5     it under the terms of the BSD style license.
6
7      This program is distributed in the hope that it will be useful,
8     but WITHOUT ANY WARRANTY; without even the implied warranty of
9     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10     FMILIB_License.txt file for more details.
11
12     You should have received a copy of the FMILIB_License.txt file
13     along with this program. If not, contact Modelon AB <http://www.modelon.com>.
14 */
15
16 #include "fmi1_import_impl.h"
17
18 int fmi1_import_get_canHandleVariableCommunicationStepSize(fmi1_import_capabilities_t* c ) {
19     return fmi1_xml_get_canHandleVariableCommunicationStepSize(c);
20 }
21 int fmi1_import_get_canHandleEvents(fmi1_import_capabilities_t* c ) {
22     return fmi1_xml_get_canHandleEvents(c);
23 }
24 int fmi1_import_get_canRejectSteps(fmi1_import_capabilities_t* c ) {
25     return fmi1_xml_get_canRejectSteps( c );
26 }
27 int fmi1_import_get_canInterpolateInputs(fmi1_import_capabilities_t* c ) {
28     return fmi1_xml_get_canInterpolateInputs(c);
29 }
30 unsigned int fmi1_import_get_maxOutputDerivativeOrder(fmi1_import_capabilities_t* c ) {
31     return fmi1_xml_get_maxOutputDerivativeOrder(c);
32 }
33 int fmi1_import_get_canRunAsynchronuously(fmi1_import_capabilities_t* c ) {
34     return fmi1_xml_get_canRunAsynchronuously(c);
35 }
36 int fmi1_import_get_canSignalEvents(fmi1_import_capabilities_t* c ) {
37     return fmi1_xml_get_canSignalEvents(c);
38 }
39 int fmi1_import_get_canBeInstantiatedOnlyOncePerProcess(fmi1_import_capabilities_t* c ) {
40     return fmi1_xml_get_canBeInstantiatedOnlyOncePerProcess(c);
41 }
42 int fmi1_import_get_canNotUseMemoryManagementFunctions(fmi1_import_capabilities_t* c ) {
43     return fmi1_xml_get_canNotUseMemoryManagementFunctions(c);
44 }