* Alexandre Julliard julliard@winehq.org [23/08/05, 20:39:52]:
Thanks for the comments. I see you points in all of them, apart from the following one, where I didn't understand what you meant.
- {
helper->pipe_in = fdopen(pipe_in[0], "r");
close(pipe_in[1]);
helper->pipe_out = fdopen(pipe_out[1], "w");
close(pipe_out[0]);
- }
You should avoid using stdio.
How would I do this avoiding stdio? ntlm_auth uses stdin and stdout to read input and write output. This seems to be the Unix way of doing things.
Cheers, Kai