//Credits SteamAss
#include "windows.h"
#include <iostream>
#include <stdio.h>
int main()
{
SetConsoleTitle("LoadLibrary By SteamAss");
DWORD error;
HINSTANCE hDLL = LoadLibrary("CShell.dll"); // Handle to DLL
if(hDLL != NULL)
{
printf("CShell foi carregada.\n");
}
else
{
error = GetLastError();
printf("Nao foi possivel carregar a CShell.\n");
}
system("pause");
return 0;
}
