I\'m learning how to dynamically load DLL\'s but what I don\'t understand is this line
typedef void (*FunctionFunc)();
I have a few questio
If you can use C++11 you may want to use std::function and using keyword.
std::function
using
using FunctionFunc = std::function;