mirror of
https://github.com/HDFGroup/hdf5.git
synced 2024-11-27 02:10:55 +08:00
removed duplicate exports of DS subroutines
This commit is contained in:
parent
9e39def205
commit
6d658a946c
@ -44,13 +44,6 @@ CONTAINS
|
||||
|
||||
IMPLICIT NONE
|
||||
|
||||
!
|
||||
!This definition is needed for Windows DLLs
|
||||
!DEC$if defined(BUILD_HDF5_HL_DLL)
|
||||
!DEC$attributes dllexport :: h5dsset_scale_f
|
||||
!DEC$endif
|
||||
!
|
||||
|
||||
INTEGER(hid_t), INTENT(in) :: dsid ! The dataset to be made a Dimension Scale
|
||||
CHARACTER(LEN=*), INTENT(in), OPTIONAL :: dimname ! The dimension name
|
||||
INTEGER :: errcode ! Error code
|
||||
@ -99,12 +92,6 @@ CONTAINS
|
||||
|
||||
IMPLICIT NONE
|
||||
|
||||
!
|
||||
!This definition is needed for Windows DLLs
|
||||
!DEC$if defined(BUILD_HDF5_HL_DLL)
|
||||
!DEC$attributes dllexport :: h5dsattach_scale_f
|
||||
!DEC$endif
|
||||
!
|
||||
INTEGER(hid_t), INTENT(in) :: did ! the dataset
|
||||
INTEGER(hid_t), INTENT(in) :: dsid ! the scale to be attached
|
||||
INTEGER , INTENT(in) :: idx ! the dimension of did that dsid is associated with.
|
||||
@ -148,13 +135,7 @@ CONTAINS
|
||||
SUBROUTINE H5DSdetach_scale_f( did, dsid, idx, errcode)
|
||||
|
||||
IMPLICIT NONE
|
||||
|
||||
!
|
||||
!This definition is needed for Windows DLLs
|
||||
!DEC$if defined(BUILD_HDF5_HL_DLL)
|
||||
!DEC$attributes dllexport :: h5dsdetach_scale_f
|
||||
!DEC$endif
|
||||
!
|
||||
|
||||
INTEGER(hid_t), INTENT(in) :: did ! the dataset
|
||||
INTEGER(hid_t), INTENT(in) :: dsid ! the scale to be detached
|
||||
INTEGER , INTENT(in) :: idx ! the dimension of did to detach
|
||||
@ -199,13 +180,7 @@ CONTAINS
|
||||
SUBROUTINE H5DSis_attached_f( did, dsid, idx, is_attached, errcode)
|
||||
|
||||
IMPLICIT NONE
|
||||
|
||||
!
|
||||
!This definition is needed for Windows DLLs
|
||||
!DEC$if defined(BUILD_HDF5_HL_DLL)
|
||||
!DEC$attributes dllexport :: h5dsis_attached_f
|
||||
!DEC$endif
|
||||
!
|
||||
|
||||
INTEGER(hid_t), INTENT(in) :: did ! the dataset
|
||||
INTEGER(hid_t), INTENT(in) :: dsid ! the scale to be attached
|
||||
INTEGER , INTENT(in) :: idx ! the dimension of did that dsid is associated with
|
||||
@ -264,13 +239,7 @@ CONTAINS
|
||||
SUBROUTINE H5DSis_scale_f( did, is_scale, errcode)
|
||||
|
||||
IMPLICIT NONE
|
||||
|
||||
!
|
||||
!This definition is needed for Windows DLLs
|
||||
!DEC$if defined(BUILD_HDF5_HL_DLL)
|
||||
!DEC$attributes dllexport :: h5dsis_scale_f
|
||||
!DEC$endif
|
||||
!
|
||||
|
||||
INTEGER(hid_t), INTENT(in) :: did ! the data set to query
|
||||
LOGICAL , INTENT(out) :: is_scale ! logical:
|
||||
! .TRUE. if did is a Dimension Scale
|
||||
@ -319,13 +288,6 @@ CONTAINS
|
||||
|
||||
IMPLICIT NONE
|
||||
|
||||
!
|
||||
!This definition is needed for Windows DLLs
|
||||
!DEC$if defined(BUILD_HDF5_HL_DLL)
|
||||
!DEC$attributes dllexport :: h5dsset_label_f
|
||||
!DEC$endif
|
||||
!
|
||||
|
||||
INTEGER(hid_t), INTENT(in) :: did ! The dataset
|
||||
INTEGER , INTENT(in) :: idx ! The dimension
|
||||
CHARACTER(LEN=*), INTENT(in) :: label ! The label
|
||||
@ -375,13 +337,6 @@ CONTAINS
|
||||
|
||||
IMPLICIT NONE
|
||||
|
||||
!
|
||||
!This definition is needed for Windows DLLs
|
||||
!DEC$if defined(BUILD_HDF5_HL_DLL)
|
||||
!DEC$attributes dllexport :: h5dsget_label_f
|
||||
!DEC$endif
|
||||
!
|
||||
|
||||
INTEGER(hid_t), INTENT(in) :: did ! The dataget
|
||||
INTEGER , INTENT(in) :: idx ! The dimension
|
||||
CHARACTER(LEN=*), INTENT(in) :: label ! The label
|
||||
@ -430,13 +385,6 @@ CONTAINS
|
||||
|
||||
IMPLICIT NONE
|
||||
|
||||
!
|
||||
!This definition is needed for Windows DLLs
|
||||
!DEC$if defined(BUILD_HDF5_HL_DLL)
|
||||
!DEC$attributes dllexport :: h5dsget_scale_name_f
|
||||
!DEC$endif
|
||||
!
|
||||
|
||||
INTEGER(hid_t), INTENT(in) :: did ! The dataget
|
||||
CHARACTER(LEN=*), INTENT(out) :: name ! The name
|
||||
INTEGER(size_t) , INTENT(inout) :: size ! The length of the name buffer
|
||||
@ -478,13 +426,6 @@ CONTAINS
|
||||
SUBROUTINE H5DSget_num_scales_f( did, idx, num_scales, errcode)
|
||||
|
||||
IMPLICIT NONE
|
||||
|
||||
!
|
||||
!This definition is needed for Windows DLLs
|
||||
!DEC$if defined(BUILD_HDF5_HL_DLL)
|
||||
!DEC$attributes dllexport :: h5dsget_num_scales_f
|
||||
!DEC$endif
|
||||
!
|
||||
INTEGER(hid_t), INTENT(in) :: did ! the dataset
|
||||
INTEGER , INTENT(in) :: idx ! the dimension of did to query
|
||||
INTEGER , INTENT(out) :: num_scales ! the number of Dimension Scales associated with did
|
||||
|
Loading…
Reference in New Issue
Block a user