OSDN Git Service

gcc/
[pf3gnuchains/gcc-fork.git] / libgfortran / intrinsics / iso_c_binding.h
1 /* Copyright (C) 2007, 2009 Free Software Foundation, Inc.
2    Contributed by Christopher Rickett.
3
4 This file is part of the GNU Fortran 95 runtime library (libgfortran).
5
6 Libgfortran is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3, or (at your option)
9 any later version.
10
11 Libgfortran is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 GNU General Public License for more details.
15
16 Under Section 7 of GPL version 3, you are granted additional
17 permissions described in the GCC Runtime Library Exception, version
18 3.1, as published by the Free Software Foundation.
19
20 You should have received a copy of the GNU General Public License and
21 a copy of the GCC Runtime Library Exception along with this program;
22 see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
23 <http://www.gnu.org/licenses/>.  */
24
25
26 /* Declarations for ISO_C_BINDING library helper functions.  */
27
28 #ifndef GFOR_ISO_C_BINDING_H
29 #define GFOR_ISO_C_BINDING_H
30
31 #include "libgfortran.h"
32
33 typedef struct c_ptr
34 {
35   void *c_address;
36 }
37 c_ptr_t;
38
39 typedef struct c_funptr
40 {
41   void *c_address;
42 }
43 c_funptr_t;
44
45 #define ISO_C_BINDING_PREFIX(a) __iso_c_binding_##a
46
47 void ISO_C_BINDING_PREFIX(c_f_pointer)(void *, gfc_array_void *,
48                                        const array_t *, int, int);
49
50 void ISO_C_BINDING_PREFIX(c_f_pointer_u0) (void *, gfc_array_void *,
51                                            const array_t *);
52 void ISO_C_BINDING_PREFIX(c_f_pointer_d0) (void *, gfc_array_void *,
53                                            const array_t *);
54
55 #endif