I'm trying to write my first R:Base specific DLL library. I'm iteratively testing and recompiling the DLL itself. Once I STDCALL a function from the library I don't seem to be able to free the library without exiting R:Base -- which means I can't replace the running copy with my newly compiled copy. This means quiting and restarting R:Base every few minutes.
Does anyone know the trick to getting DLFREE() to actually release the library file? I've tried calling DELFUNC on the only function imported from the library. (Note: I'm using the implied DLLOAD inherent in STDCALL, not DLLOADing the library manually, if that makes a difference). -- Larry

