I'm just trying to call an external function via dll.
There is an error on compiling the source code by calling the function. It seems that the function GetProcAddress ist not found.
error #6284: There is no matching specific function for this generic function reference. [GETPROCADDRESS]
lib_handle = LOADLIBRARY 1 ("c:\svn\NOx_DYN_dll\bin\NOx_DYN_dll.dll"C) if (lib_handle.eq.0) then WRITE(6,*) 'NOx_DYN_dll.dll not loaded' stop else ptr = GetProcAddress(lib_handle, "NOx_DYN_dll") if (ptr.eq.0) then write(6,*) 'Error: GetProcAddress' stop endif endif
Some ideas?
Zone:
Thread Topic:
Help Me