Re: How to print out from DLL

2004-02-17 Thread Mikhail Bykanov
Hi Igor, Thank you for your answer. But I stil have a questions. If I change the printf function in the DLL to the fprintf and print to the file, then this programm works fine. If I change the file descriptor to the stderr then I have again this problem - no printings. It looks like no problem with

Re: How to print out from DLL

2004-02-17 Thread Igor Pechtchanski
On Tue, 17 Feb 2004, Mishel wrote: > Hi, > > I have a problem with printing to the standart output from DLL. > 1. I create simple DLL(aaaDll.dll) in the MVS 6.0. This DLL has only one > function(fnAaaDll()), which prints some strings. > 2. I create another console application project(aaaTestDll.cp

How to print out from DLL

2004-02-17 Thread Mishel
Hi, I have a problem with printing to the standart output from DLL. 1. I create simple DLL(aaaDll.dll) in the MVS 6.0. This DLL has only one function(fnAaaDll()), which prints some strings. 2. I create another console application project(aaaTestDll.cpp) in MVS 6.0 which has only main function. I