How do I import a DLL (minifmod.dll) in C++ ?
I want to be able to call a function inside this DLL. I already know the argument list for the function but I don’t know how to call it.
Is there a way of declaring an imported function in C++ like in C# ?
The c# syntax for declaring an imported function is not available in c++. Here are some other SO questions on how to use DLLs: