Is there any substitute for _outp, removed in Visual C ++ 2015?

2

I'm migrating a project in MFC from Visual Studio 2010 to 2015.

In this process I discovered that _outp, among other commands, have been permanently removed.

In the MSDN (_outp, _outpw, _outpd) report that "These functions are deprecated. As of Visual Studio 2015, they are not available on the CRT. " but does not indicate anything that can replace them. I would like to know what I can use.

    
asked by anonymous 19.06.2016 / 22:29

1 answer

0

I believe your only alternative is to migrate your code using the supported APIs:
Serial Communications

    
20.06.2016 / 01:21