Re: taskmgr [try 2]: Converted some functions and variables to Unicode [1/12]
6 Aug
2008
6 Aug
'08
9:11 a.m.
Vladimir Pankratov wrote:
- TCHAR strErrorText[260]; + WCHAR wstrErrorText[0x400];
Why do you use word format for size constant? Btw, is it normal that it's changed 260 -> 1024?
- GetLastErrorText(strErrorText, 260); + GetLastErrorText(wstrErrorText, sizeof(wstrErrorText)/sizeof(WCHAR));
You've patched GetLastErrorText in your patch 12. But you changed calls to use WCHAR argument before this. That's why previous patches are broken I think. you should change function and all related calls of it in a single patch.
6339
Age (days ago)
6339
Last active (days ago)
0 comments
1 participants
participants (1)
-
Nikolay Sivov