Owen
|
Registered User
|
C++ programmer, also dabble in Tcl, bash scripting, C#, and whatever else I can find an excuse to learn and then forget.
|
|
5h |
comment |
Are there well-defined size limits in FormatMessage? @Gonzalo: Yes, I just tried manually allocating the buffer (LPTSTR buff = new char[70000]; FormatMessage(FORMAT_MESSAGE_FROM_STRING, str, 0, 0, buff, 70000, &argList);) and got the same result. @MSalters: Sure, in Unicode. But my program isn't explicitly using that, so it's annoying that Windows chooses to marshal to and from Unicode as you explain in your answer (and lose data, or rather give up, in the process). I guess the annoyance is mostly that it's not documented. |
|
6h |
comment |
Are there well-defined size limits in FormatMessage? Ah, I guess I'm calling FormatMessageA, since I don't have the UNICODE macro defined. So that sounds like an explanation. Thanks! |
|
23h |
comment |
Are there well-defined size limits in FormatMessage? Hmm, I'm not sure what to call to set the langid explicitly (i.e. what function to pass the result of that MAKELANGID macro to). But I'm pretty confident I've got a single-byte character set. My locale is en_CA, codepage 1252 (ANSI - Latin I). When I look in the watch window for the null terminator in the buff returned from FormatMessage(), it is indeed 32032 bytes from the start of the string. |
|
1d |
comment |
Are there well-defined size limits in FormatMessage? Not so. When I trim down the argument to be 32,000 bytes, FormatMessage() returns 32032, and sizeof(TCHAR) for me is 1. |
|
1d |
revised |
Are there well-defined size limits in FormatMessage? added 10 characters in body |
|
1d |
asked | Are there well-defined size limits in FormatMessage? |
|
Nov 15 |
awarded | ● Popular Question |
|
Nov 10 |
awarded | ● Popular Question |
|
Oct 27 |
awarded | ● Popular Question |
|
Oct 26 |
awarded | ● Popular Question |
|
Sep 21 |
accepted | How to avoid “(null)” StackTrace in DPH_BLOCK_INFORMATION ? |
|
Sep 18 |
revised |
How to avoid “(null)” StackTrace in DPH_BLOCK_INFORMATION ? added 163 characters in body |
|
Sep 18 |
answered | How to avoid “(null)” StackTrace in DPH_BLOCK_INFORMATION ? |
|
Sep 18 |
asked | How to avoid “(null)” StackTrace in DPH_BLOCK_INFORMATION ? |
|
Sep 11 |
comment |
“LNK1104: cannot open file ‘X’”: How to find out who wants X linked in? Thanks! That was indeed helpful. |
|
Sep 11 |
asked | “LNK1104: cannot open file ‘X’”: How to find out who wants X linked in? |
|
Sep 6 |
awarded | ● Yearling |
|
Sep 4 |
comment |
What does the ‘,’ operator do in C? Indeed! Duly corrected. |
|
Sep 4 |
revised |
What does the ‘,’ operator do in C? edited body |
|
Jun 25 |
comment |
Does the tee command always wait for EOF? @jon: Yeah, it seems my problem was actually with devenv.exe choking things up somehow when it's building a big solution. I tried using my own tee replacement and it had the same trouble. |
|
Jun 23 |
comment |
Any way to “bulk load” a Qt data model to avoid excess signal invocations? Yeah, of course. That way just seems quite manual; it's a pity support for this sort of operation isn't built into the framework. I don't imagine it's particularly uncommon. I'm sure I'll end up accepting this answer because it definitely was helpful and there probably isn't any better answer out there. I just feel like leaving the question open for a bit in case someone happens by with a brainwave. |
|
Jun 18 |
comment |
Any way to “bulk load” a Qt data model to avoid excess signal invocations? Thanks! The only part this doesn't address is the need still to emit dataChanged signal once for the whole operation. In my particular case I have a proxy model on top of the real one, and it has an invalidate() method, but what approach would there be if I were dealing directly with the QStandardItemModel? |
|
Jun 17 |
asked | Any way to “bulk load” a Qt data model to avoid excess signal invocations? |
|
Jun 13 |
awarded | ● Popular Question |
