Does anyone got a Working Loadlib ?
Does anyone got a Working Loadlib? Or should I code one ?
#include <Windows.h>
int main()
{
DWORD ex;
HINSTANCE cshell = LoadLibrary(TEXT("CShell.dll"));
if(cshell != NULL) {
printf("Loaded\n");
}
else {
ex = GetLastError();
printf("Not loaded\n");
}
system("pause");
return 0;
}