Francois Gouget wrote:
The only issue I see is if the xxxA is implemented but xxxW is not or reciprocally. Then we have a test that fails but cannot really be put as a TODO since xxxA works. the right way to fix this is to implement the function that is missing. Another way to handle this issue is to also have a 'TODOA' and a 'TODOW'.
Oh, that's an easy one :-) :
#ifdef _UNICODE TODO(xxxW) #else xxxA #endif
Andriy Palamarchuk