On Thu, Sep 23, 2004 at 01:37:32PM +0100, Robert Shearman wrote:
I did replace some GetWindowLongA calls with GetWindowLongPtrW, but there is really no difference between the two A and W versions in terms of performance anyway.
Yes, but we should use the W version in preference to the A one as a matter of principle. This way, a simple syntactic check can tell us that we don't have W->A transitions. Otherwise, we have to do semantic checks all the time, and that's just not fun :)