
// Yours
void Oww()
{
DWORD CShell = GetModuleHandle.....
.......... CShell + 0x..........
}
// Why not
Global: DWORD CShell;
void Once()
{
CShell = GetModuleHandle.......
}
void Used()
{
.......... CSHell + 0x..........
}

