source: XIOS/trunk/src/interface/fortran_attr/variable_interface_attr.f90 @ 501

Last change on this file since 501 was 501, checked in by ymipsl, 9 years ago

Add licence copyright to all file ond directory src using the command :
svn propset -R copyright -F header_licence src

XIOS is now officialy under CeCILL licence

YM

  • Property copyright set to
    Software name : XIOS (Xml I/O Server)
    http://forge.ipsl.jussieu.fr/ioserver
    Creation date : January 2009
    Licence : CeCCIL version2
    see license file in root directory : Licence_CeCILL_V2-en.txt
    or http://www.cecill.info/licences/Licence_CeCILL_V2-en.html
    Holder : CEA/LSCE (Laboratoire des Sciences du CLimat et de l'Environnement)
    CNRS/IPSL (Institut Pierre Simon Laplace)
    Project Manager : Yann Meurdesoif
    yann.meurdesoif@cea.fr
File size: 2.2 KB
Line 
1! * ************************************************************************** *
2! *               Interface auto generated - do not modify                     *
3! * ************************************************************************** *
4
5MODULE variable_interface_attr
6  USE, INTRINSIC :: ISO_C_BINDING
7 
8  INTERFACE ! Do not call directly / interface FORTRAN 2003 <-> C99
9   
10   
11    SUBROUTINE cxios_set_variable_name(variable_hdl, name, name_size) BIND(C)
12      USE ISO_C_BINDING
13      INTEGER (kind = C_INTPTR_T), VALUE :: variable_hdl
14      CHARACTER(kind = C_CHAR)    , DIMENSION(*) :: name
15      INTEGER  (kind = C_INT)     , VALUE        :: name_size
16    END SUBROUTINE cxios_set_variable_name
17   
18    SUBROUTINE cxios_get_variable_name(variable_hdl, name, name_size) BIND(C)
19      USE ISO_C_BINDING
20      INTEGER (kind = C_INTPTR_T), VALUE :: variable_hdl
21      CHARACTER(kind = C_CHAR)    , DIMENSION(*) :: name
22      INTEGER  (kind = C_INT)     , VALUE        :: name_size
23    END SUBROUTINE cxios_get_variable_name
24   
25    FUNCTION cxios_is_defined_variable_name(variable_hdl ) BIND(C)
26      USE ISO_C_BINDING
27      LOGICAL(kind=C_BOOL) :: cxios_is_defined_variable_name
28      INTEGER (kind = C_INTPTR_T), VALUE :: variable_hdl
29    END FUNCTION cxios_is_defined_variable_name
30   
31   
32    SUBROUTINE cxios_set_variable_type(variable_hdl, type, type_size) BIND(C)
33      USE ISO_C_BINDING
34      INTEGER (kind = C_INTPTR_T), VALUE :: variable_hdl
35      CHARACTER(kind = C_CHAR)    , DIMENSION(*) :: type
36      INTEGER  (kind = C_INT)     , VALUE        :: type_size
37    END SUBROUTINE cxios_set_variable_type
38   
39    SUBROUTINE cxios_get_variable_type(variable_hdl, type, type_size) BIND(C)
40      USE ISO_C_BINDING
41      INTEGER (kind = C_INTPTR_T), VALUE :: variable_hdl
42      CHARACTER(kind = C_CHAR)    , DIMENSION(*) :: type
43      INTEGER  (kind = C_INT)     , VALUE        :: type_size
44    END SUBROUTINE cxios_get_variable_type
45   
46    FUNCTION cxios_is_defined_variable_type(variable_hdl ) BIND(C)
47      USE ISO_C_BINDING
48      LOGICAL(kind=C_BOOL) :: cxios_is_defined_variable_type
49      INTEGER (kind = C_INTPTR_T), VALUE :: variable_hdl
50    END FUNCTION cxios_is_defined_variable_type
51   
52   
53    END INTERFACE
54 
55END MODULE variable_interface_attr
Note: See TracBrowser for help on using the repository browser.