I am looking at the delay load example under DLL\DLL in the samples in 11.1.065.
This has
pointer (p_SET_VENDOR_KEY, SET_VENDOR_KEY)
INTERFACE
SUBROUTINE SET_VENDOR_KEY(VENDOR_KEY)
CHARACTER(LEN=10), INTENT(IN) :: VENDOR_KEY
END SUBROUTINE SET_VENDOR_KEY
END INTERFACE
But when I compile I get
warning #7028: Integer pointer non-standard
warning #7372: Procedures as pointees is not supported in Fortran 2008 standard. [SET_VENDOR_KEY]
for each of the above constructs respectively. Is this format being deprecated?
I am compiling in XE 2013 SP1