[Wine] Re: Please die if you wait "too long" RtlpWaitForCriti

vitamin wineforum-user at winehq.org
Wed Aug 27 01:08:22 CDT 2008


Dee Ayy wrote:
> On Mon, Aug 25, 2008 at 12:44 AM, vitamin <wineforum-user at winehq.org> wrote:
> 
> > Try:
> > 
> > Code:
> > $ wine cmd
> > c:> echo "some stuff" | myexe
> > 
> 
> Interesting way to run wine.  However, I get the same response.


Then either your program is buggy or Wine's cmd doesn't fully implement what you want.

Making a simple test app points ... to your app being buggy:


Code:
#include <stdio.h>

int main(void)
{
    char buff[100];
    fgets(buff, sizeof(buff), stdin);
    printf("got \"%s\"\n", buff);
    return 0;
}

$ i386-mingw32-gcc test_pipe.c -o test_pipe.exe
$ echo "something" | wine test_pipe.exe
got "something
"
$ wine cmd
CMD Version 1.1.3

C:\>echo "something" | test_pipe.exe
got ""something"
"
C:\>










More information about the wine-users mailing list