#include<Windows.h>
void ShowMessage(char* string, DWORD CShell);
while(1)
{
DWORD CShell = (DWORD)GetModuleHandleA("CShell.dll");
ShowMessage("TITLE", CShell);
while(1)
{
//Hacks
ATT THE VERY END
void ShowMessage(char* string, DWORD CShell)
{
DWORD MsgBoxFunc = CShell + 0x7D780;
__asm
{
push string;
push 0;
push 0x70;
push 0x1C;
call MsgBoxFunc;
add esp, 16;
}
}

MessageBoxA(0, "ur message","title" ,0);