source: XIOS/dev/dev_ym/XIOS_COUPLING/src/interface/fortran_attr/reduce_axis_to_scalar_interface_attr.F90 @ 2338

Last change on this file since 2338 was 2338, checked in by jderouillat, 2 years ago

Added extract_domain interface. Updated all interfaces, normalize some private attributes names of domain

File size: 2.5 KB
Line 
1! * ************************************************************************** *
2! *               Interface auto generated - do not modify                     *
3! * ************************************************************************** *
4#include "../fortran/xios_fortran_prefix.hpp"
5
6MODULE reduce_axis_to_scalar_interface_attr
7  USE, INTRINSIC :: ISO_C_BINDING
8
9  INTERFACE
10    ! Do not call directly / interface FORTRAN 2003 <-> C99
11
12    SUBROUTINE cxios_set_reduce_axis_to_scalar_local(reduce_axis_to_scalar_hdl, local) BIND(C)
13      USE ISO_C_BINDING
14      INTEGER (kind = C_INTPTR_T), VALUE :: reduce_axis_to_scalar_hdl
15      LOGICAL (KIND=C_BOOL)      , VALUE :: local
16    END SUBROUTINE cxios_set_reduce_axis_to_scalar_local
17
18    SUBROUTINE cxios_get_reduce_axis_to_scalar_local(reduce_axis_to_scalar_hdl, local) BIND(C)
19      USE ISO_C_BINDING
20      INTEGER (kind = C_INTPTR_T), VALUE :: reduce_axis_to_scalar_hdl
21      LOGICAL (KIND=C_BOOL)             :: local
22    END SUBROUTINE cxios_get_reduce_axis_to_scalar_local
23
24    FUNCTION cxios_is_defined_reduce_axis_to_scalar_local(reduce_axis_to_scalar_hdl) BIND(C)
25      USE ISO_C_BINDING
26      LOGICAL(kind=C_BOOL) :: cxios_is_defined_reduce_axis_to_scalar_local
27      INTEGER (kind = C_INTPTR_T), VALUE :: reduce_axis_to_scalar_hdl
28    END FUNCTION cxios_is_defined_reduce_axis_to_scalar_local
29
30
31    SUBROUTINE cxios_set_reduce_axis_to_scalar_operation(reduce_axis_to_scalar_hdl, operation, operation_size) BIND(C)
32      USE ISO_C_BINDING
33      INTEGER (kind = C_INTPTR_T), VALUE :: reduce_axis_to_scalar_hdl
34      CHARACTER(kind = C_CHAR)    , DIMENSION(*) :: operation
35      INTEGER  (kind = C_INT)     , VALUE        :: operation_size
36    END SUBROUTINE cxios_set_reduce_axis_to_scalar_operation
37
38    SUBROUTINE cxios_get_reduce_axis_to_scalar_operation(reduce_axis_to_scalar_hdl, operation, operation_size) BIND(C)
39      USE ISO_C_BINDING
40      INTEGER (kind = C_INTPTR_T), VALUE :: reduce_axis_to_scalar_hdl
41      CHARACTER(kind = C_CHAR)    , DIMENSION(*) :: operation
42      INTEGER  (kind = C_INT)     , VALUE        :: operation_size
43    END SUBROUTINE cxios_get_reduce_axis_to_scalar_operation
44
45    FUNCTION cxios_is_defined_reduce_axis_to_scalar_operation(reduce_axis_to_scalar_hdl) BIND(C)
46      USE ISO_C_BINDING
47      LOGICAL(kind=C_BOOL) :: cxios_is_defined_reduce_axis_to_scalar_operation
48      INTEGER (kind = C_INTPTR_T), VALUE :: reduce_axis_to_scalar_hdl
49    END FUNCTION cxios_is_defined_reduce_axis_to_scalar_operation
50
51  END INTERFACE
52
53END MODULE reduce_axis_to_scalar_interface_attr
Note: See TracBrowser for help on using the repository browser.