I have a program written and compiled under windows using borland c++. everything works fine under linux using wine (last), except a pipe communication. I cannot comunicate with another computer on my LAN with pipe!!!! the program can do it under windows, but it cannot do it under linux with wine any suggestions ?
fachamix wrote:> I cannot comunicate with another computer on my LAN with pipe!Correct, that part is not implemented in Wine. And won't be implemented any time soon. Don't use named pipes across the network, they are highly platform specific. Use sockets - they work on _all_ systems with minor differences.