I have a third-party dll that I load into software that isn't mine, and I'm using AllocConsole() to create the standard windows CLI window so I have an easy means of outputting debug messages.

My problem is though, is that it ignores any kind of input. I just want to be able to use the console I allocated and enable the ability for me to give it some input.

link|improve this question

I'm assuming this is on MS Windows, since AllocConsole is a Microsoft API. Retagging appropriately. – Ben Voigt Jan 26 at 16:00
It also says windows CLI in my post so no assumptions have to be made. Thanks for retag. – Nowayz Jan 26 at 22:49
feedback

3 Answers

Do you also redirect the stdoutand stderrto your console?

I used this code to get access to the JavaVM output from a Windows app.

if(::AllocConsole())
    {
        int hCrt = ::_open_osfhandle((intptr_t) ::GetStdHandle(STD_OUTPUT_HANDLE), _O_TEXT);
        FILE *hf = ::_fdopen( hCrt, "w" );
        *stdout = *hf;
        ::setvbuf(stdout, NULL, _IONBF, 0 );

        hCrt = ::_open_osfhandle((intptr_t) ::GetStdHandle(STD_ERROR_HANDLE), _O_TEXT);
        hf = ::_fdopen( hCrt, "w" );
        *stderr = *hf;
        ::setvbuf(stderr, NULL, _IONBF, 0 );
    }

After this I can see all stdoutand stderr outputs from the VM.

link|improve this answer
I've directed the stdout and stderr yes, but I still can't use the CLI window for STDIN. When I try to set the stdin correctly the window still refuses to be typed on. – Nowayz Jan 26 at 15:57
The standard handles aren't associated with a console created after the program starts. If that were done first, the rest of this might work. – Ben Voigt Jan 26 at 17:28
feedback

This is the code that works for me:

freopen("CONOUT$", "w", stdout);

You can probably do something similar with CONIN$ and stdin (Open for read, of course).

link|improve this answer
Thanks this was on the right track. – Nowayz Jan 28 at 18:12
feedback
up vote 0 down vote accepted

Thanks to Ben Voigt, I was able to cause the console to take input after I allocated it by doing:

freopen("CONIN$", "r", stdin); 
freopen("CONOUT$", "w", stdout); 
freopen("CONOUT$", "w", stderr); 

This also directs the stdout and strerr to the same console window, in case they are directed someplace else for some reason.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.