source: XIOS/dev/branch_yushan/src/interface/fortran_attr/interpolate_domain_interface_attr.F90 @ 1037

Last change on this file since 1037 was 1037, checked in by yushan, 7 years ago

initialize the branch

File size: 3.3 KB
Line 
1! * ************************************************************************** *
2! *               Interface auto generated - do not modify                     *
3! * ************************************************************************** *
4#include "../fortran/xios_fortran_prefix.hpp"
5
6MODULE interpolate_domain_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_interpolate_domain_file(interpolate_domain_hdl, file, file_size) BIND(C)
13      USE ISO_C_BINDING
14      INTEGER (kind = C_INTPTR_T), VALUE :: interpolate_domain_hdl
15      CHARACTER(kind = C_CHAR)    , DIMENSION(*) :: file
16      INTEGER  (kind = C_INT)     , VALUE        :: file_size
17    END SUBROUTINE cxios_set_interpolate_domain_file
18
19    SUBROUTINE cxios_get_interpolate_domain_file(interpolate_domain_hdl, file, file_size) BIND(C)
20      USE ISO_C_BINDING
21      INTEGER (kind = C_INTPTR_T), VALUE :: interpolate_domain_hdl
22      CHARACTER(kind = C_CHAR)    , DIMENSION(*) :: file
23      INTEGER  (kind = C_INT)     , VALUE        :: file_size
24    END SUBROUTINE cxios_get_interpolate_domain_file
25
26    FUNCTION cxios_is_defined_interpolate_domain_file(interpolate_domain_hdl) BIND(C)
27      USE ISO_C_BINDING
28      LOGICAL(kind=C_BOOL) :: cxios_is_defined_interpolate_domain_file
29      INTEGER (kind = C_INTPTR_T), VALUE :: interpolate_domain_hdl
30    END FUNCTION cxios_is_defined_interpolate_domain_file
31
32
33    SUBROUTINE cxios_set_interpolate_domain_order(interpolate_domain_hdl, order) BIND(C)
34      USE ISO_C_BINDING
35      INTEGER (kind = C_INTPTR_T), VALUE :: interpolate_domain_hdl
36      INTEGER (KIND=C_INT)      , VALUE :: order
37    END SUBROUTINE cxios_set_interpolate_domain_order
38
39    SUBROUTINE cxios_get_interpolate_domain_order(interpolate_domain_hdl, order) BIND(C)
40      USE ISO_C_BINDING
41      INTEGER (kind = C_INTPTR_T), VALUE :: interpolate_domain_hdl
42      INTEGER (KIND=C_INT)             :: order
43    END SUBROUTINE cxios_get_interpolate_domain_order
44
45    FUNCTION cxios_is_defined_interpolate_domain_order(interpolate_domain_hdl) BIND(C)
46      USE ISO_C_BINDING
47      LOGICAL(kind=C_BOOL) :: cxios_is_defined_interpolate_domain_order
48      INTEGER (kind = C_INTPTR_T), VALUE :: interpolate_domain_hdl
49    END FUNCTION cxios_is_defined_interpolate_domain_order
50
51
52    SUBROUTINE cxios_set_interpolate_domain_renormalize(interpolate_domain_hdl, renormalize) BIND(C)
53      USE ISO_C_BINDING
54      INTEGER (kind = C_INTPTR_T), VALUE :: interpolate_domain_hdl
55      LOGICAL (KIND=C_BOOL)      , VALUE :: renormalize
56    END SUBROUTINE cxios_set_interpolate_domain_renormalize
57
58    SUBROUTINE cxios_get_interpolate_domain_renormalize(interpolate_domain_hdl, renormalize) BIND(C)
59      USE ISO_C_BINDING
60      INTEGER (kind = C_INTPTR_T), VALUE :: interpolate_domain_hdl
61      LOGICAL (KIND=C_BOOL)             :: renormalize
62    END SUBROUTINE cxios_get_interpolate_domain_renormalize
63
64    FUNCTION cxios_is_defined_interpolate_domain_renormalize(interpolate_domain_hdl) BIND(C)
65      USE ISO_C_BINDING
66      LOGICAL(kind=C_BOOL) :: cxios_is_defined_interpolate_domain_renormalize
67      INTEGER (kind = C_INTPTR_T), VALUE :: interpolate_domain_hdl
68    END FUNCTION cxios_is_defined_interpolate_domain_renormalize
69
70  END INTERFACE
71
72END MODULE interpolate_domain_interface_attr
Note: See TracBrowser for help on using the repository browser.