i know that module its a void pointer in PluginLoader but ,
What means the whole expression: PluginLoader () : module (0) { }
struct PluginLoader
{
void* module;
PluginLoader ()
: module (0)
{}
~PluginLoader ()
{
if (module)
{
FreeLibrary ((HMODULE)module);
}
}
};
thanks in advance
Last edited on
thanks for your help now i got it