In the manual, it is stated that get_font_ID@ requires an integer parameter (https://www.silverfrost.com/ftn95-help/clearwinp/library/get_font_id_.aspx). However, I get an error regarding argument type (INTEGER(KIND=4) is required), as I try to compile this code in 64-bit (/64):
PROGRAM GET_FONT_ID_TEST
IMPLICIT NONE
INCLUDE <windows.ins>
INTEGER :: ID
call get_font_ID@ (ID)
END
In the above code, if instead of ID, an array element is used, the program doesn't complain about it:
PROGRAM GET_FONT_ID_TEST
IMPLICIT NONE
INCLUDE <windows.ins>
INTEGER :: Arr(2)
call get_font_ID@ (Arr(1))
END