aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/c_funptr_1_mod.f90
blob: 6db515bdf16e304058f7001be1acf6631c2fa20d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
! { dg-do  run }
! { dg-additional-sources c_funptr_1.f90 }
! Additional module to go with c_funptr_1.f90
module win32_types
  use, intrinsic :: iso_c_binding, only: C_INT,C_FUNPTR
  implicit none
  private

  public WNDCLASSEX_T
  type, bind(C) :: WNDCLASSEX_T
     integer(C_INT) :: cbSize
     type(C_FUNPTR) :: lpfnWndProc

  end type WNDCLASSEX_T

end module win32_types