Date: Wed, 22 Apr 1998 19:30:52 +0300 (IDT) From: Eli Zaretskii To: a DOT hofkamp AT wtb DOT tue DOT nl cc: djgpp AT delorie DOT com Subject: Re: Interfacing to a MS-Windows application: How ? In-Reply-To: <6hkpv4$lv2@tuegate.tue.nl> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Precedence: bulk On 22 Apr 1998 hat AT se-46 DOT wpa DOT wtb DOT tue DOT nl wrote: > In other words, I have no idea how to approach this problem regarding > the MS-Windows interfacing. I know that a mechanism called DDE exists, > but I don't know how to use it in Windows or in DJGPP. DJGPP produces DOS executables, so DDE and other ways of passing data between Windows apps won't work. The bets approach I can think of is launching a DJGPP program with "start", like this: system ("start djgpp-prog"); from a Windows program, then reading the file which is written by the DJGPP program as the output. But I'm not sure what exactly is the problem, since I don't understand all the details of your setup.