I been working with a dll wrapper and this function:
void Console(char *pcCommand) //Used to print to console, just like in-game
{
//post: writes pcCommand to Console
HWND MConsole = FindWindow(0, "Console");
EnumChildWindows(MConsole, EnumChildSendCommandProc,(LPARAM)pcCommand);
}
My...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.