I downloaded a wrapper from the site and downloaded the library . I put the dll wrapper in the folder with the library where the exe and unmanaged dll and other library files are located. Connected dll wrapper. As I understand it, the wrapper itself connects the library. I tried to implement an example, based on the code provided on the first site.
But at the first address to the library
pin = fftwf.malloc(n*8);
an error occurs:
Не удается загрузить DLL "libfftw3f-3.dll": Не найден указанный модуль. (Исключение из HRESULT: 0x8007007E)
I used LoadLibrary, as written in the comments, but nothing has changed, the error still appears.
How to connect the wrapper and the library?