I have a dll which exports a class like the code follows:

#define DllExport __declspec(dllexport)

class DllExport Myclass
{


}

I have to import this class at runtime using LoadLibrary function. But I donno how to give the parameters for that function.Whether I have to give Class name or member function names or what?



-Iyyaps.