Re: [3/6] msvcirt: Forward signed char exports to char functions directly
"Iván Matellanes" <matellanesivan(a)gmail.com> writes:
signed char and char are equivalent in Visual C++, so specific functions for signed char are unnecessary.
Note that you can't assume that 'char' is signed for the Unix compiler. If it makes a difference, you'd have to specify signed char explicitly. Otherwise, you could as well you the same functions for the unsigned case too. -- Alexandre Julliard julliard(a)winehq.org
On 21/07/16 12:40, Alexandre Julliard wrote:
"Iván Matellanes" <matellanesivan(a)gmail.com> writes:
signed char and char are equivalent in Visual C++, so specific functions for signed char are unnecessary.
Note that you can't assume that 'char' is signed for the Unix compiler. If it makes a difference, you'd have to specify signed char explicitly. Otherwise, you could as well you the same functions for the unsigned case too.
True. I'll check the unsigned cases as I suspect most of the functions (if not all) can be removed too. Cheers, Iván
participants (2)
-
Alexandre Julliard -
Iván Matellanes