Hi i'm trying to convert a functioning 32 bit DLL into a 64Bit DLL that can be called from Excel VBA
File1 Program test call init_function end file2 F_STDCALL subroutine init_function
write(,) 'hello' end
ftn95 /64 file1.for file2.for
slink64 dll lo file2 file mydll.dll
slink64 lo file1 lo mydll.dll file test.exe
when i execute test.exe i get:- following symbol not defined init_function in test.exe
In the 32bit version when creating the DLL i would use EXPORT init_function in SLINK but from the on-line documentation all the functions are exported in SLINK64
all guidance appreciated
Steve