I'm encountering issues with the hidden size parameter when using winio with gFortran. I thought that it was working under gFortran and it was my mistake but I can't see what I'm doing wrong.
integer iw
integer*8 window
print *, SIZEOF(window) ! Outputs 8
print *, STORAGE_SIZE(window) ! Outputs 64
! Errors with 'Argument number 2 of WINIO@ should be a 64 bit integer'
iw=winio$('%hw', window)
This is when using the most recent version prior to today's release. I have not downloaded version 8.2 yet.
Will I have to define multiple interfaces or a C wrapper?