Quote Originally Posted by Gordon` View Post
that would be correct when using inline asm:
Code:
char command[] = "ShowFPS 1";
DWORD address = 0xDEADBEEF; //runconsolecommand address
__asm {
   push command
   call address
}

Sexy .