Well the title explains itself. Before I could load CSFML dynamically using the OS functions for that. Now it can load the module successfully but can't find any functions in the module. Have you changed anything? Here's a simple little example of what I mean:
#include <Windows.h>
int main()
{
HMODULE library = LoadLibrary( "csfml-system-2.dll" );
if( library == NULL )
return 1;
void* func = GetProcAddress( library, "sfClock_create" );
if( func == NULL )
return 2;
return 0;
}
This will fail at
return 2; and I can't see why it would.