How to use:
Download LoadLib.exe, put it to Crossfire folder, open LoadLib.exe, open OllyDbg(Download it if you dont have it), in OllyDbg press "attach process" and choose LoadLib.exe. DONE
Code:
Source:
#include "windows.h"
#include <iostream>
int main()
{
DWORD err;
HINSTANCE hDLL = LoadLibrary("CShell.dll");
if(hDLL != NULL) {
printf("Library has been loaded!\n");
}
else {
err = GetLastError();
printf("Could not load dll\n");
}
system("pause");
return 0;
}