I'm working with some C legacy code using the VC++ IDE. Is there a way I can use OutputDebugString to display messages into the output window?
Or if I can't use C++ api's in a C environment, is there any other way?
Regards
Printable View
I'm working with some C legacy code using the VC++ IDE. Is there a way I can use OutputDebugString to display messages into the output window?
Or if I can't use C++ api's in a C environment, is there any other way?
Regards
Is the program a Windows program? If so, just include <windows.h> and call the function.Quote:
Originally Posted by Vaderman
Regards,
Paul McKenzie