source: XIOS/trunk/src/interface/fortran/axisgroup_interface.f90 @ 501

Last change on this file since 501 was 501, checked in by ymipsl, 10 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: 866 bytes
Line 
1MODULE AXISGROUP_INTERFACE
2   USE, INTRINSIC :: ISO_C_BINDING
3     
4   INTERFACE ! Ne pas appeler directement/Interface FORTRAN 2003 <-> C99
5     
6 
7      SUBROUTINE cxios_axisgroup_handle_create(ret, idt, idt_size) BIND(C)
8         USE ISO_C_BINDING
9         INTEGER  (kind = C_INTPTR_T)               :: ret
10         CHARACTER(kind = C_CHAR)    , DIMENSION(*) :: idt
11         INTEGER  (kind = C_INT)     , VALUE        :: idt_size
12      END SUBROUTINE cxios_axisgroup_handle_create
13
14      SUBROUTINE cxios_axisgroup_valid_id(ret, idt, idt_size) BIND(C)
15         USE ISO_C_BINDING
16         LOGICAL  (kind = C_BOOL)                   :: ret
17         CHARACTER(kind = C_CHAR)    , DIMENSION(*) :: idt
18         INTEGER  (kind = C_INT)     , VALUE        :: idt_size
19      END SUBROUTINE cxios_axisgroup_valid_id
20
21   END INTERFACE
22     
23END MODULE AXISGROUP_INTERFACE
Note: See TracBrowser for help on using the repository browser.