SyntaxFix
Write A Post
Hire A Developer
Questions
I had a similar problem. I had a char* buffer with the .so name in it. I could not convert the char* variable to LPCTSTR. Here's how I got around it...
char*
LPCTSTR
char *fNam; ... LPCSTR nam = fNam; dll = LoadLibraryA(nam);