I have recompiled (with IVF16, 64bits) a dll unchanged from about 2 years previously generated with IVF15 32 bits.
The export functions are entry points of the 'main subroutine' as follows:
=======================================================
SUBROUTINE XSTUO_INIT(IHELP,IERR)
!+... ******************************************************************
. . . . . .
. . . . . .
. . . . . .
!
!...* export / import statements * ....
!
! Expose this subroutine to users of this DLL
!
!DEC$ ATTRIBUTES DLLEXPORT :: XSTUO_INIT
!DEC$ ATTRIBUTES DLLEXPORT :: XSTPRT_EXEC
!DEC$ ATTRIBUTES DLLEXPORT :: XSTGET_SNO
!DEC$ ATTRIBUTES DLLEXPORT :: XSTGET_SLIST
!DEC$ ATTRIBUTES DLLEXPORT :: XSTGET_SPROP
!DEC$ ATTRIBUTES DLLEXPORT :: XSTGET_QTPV
!DEC$ ATTRIBUTES DLLEXPORT :: XSTGET_CPNO
!DEC$ ATTRIBUTES DLLEXPORT :: XSTGET_CPKEYS
!DEC$ ATTRIBUTES DLLEXPORT :: XSTGET_CPNAMES
!DEC$ ATTRIBUTES DLLEXPORT :: XSTGET_MW
!DEC$ ATTRIBUTES DLLEXPORT :: XSTGET_SDSIZE
!
!
!
ENTRY XSTPRT_EXEC(IVNAME,IERR)
!+... ******************************************************************
. . . . . . . .
. . . . . . . .
ENTRY XSTGET_QTPV(IVNAME,IOLEN,IOVALUE,IERR)
!+... ******************************************************************
==================================================================================
In the first test an exception was found. The DLL is called by a C++ application now in 64 bits mode.
By following the dll in debugging execution using VS one can see surprisingly that the initial call to
XSTUO_INIT(IHELP,IERR) enters the dll at XSTGET_QTPV which is the last entry in the source code.
Attached is the image of the VS debugging execution.