This is probably not the correct interpretation of this error.
The Win32 error above is more likely to indicate the actual problem.
Flags
Severity
Success
This code indicates success, rather than an error.
This may not be the correct interpretation of this code,
or possibly the program is handling errors incorrectly.
In a third party COM Module I have to pass a struct to a Method. The important parts of the IDL definition look like this: interface ITheirInterface : IDispatch { [id(0x0000012d)] HRESULT TheirMethod([in] TheirStruct Attributes); }; struct TheirStruct { BSTR TheirFieldA; BSTR TheirFieldB; } TheirStruct; I how do I call [...] read more
I am trying to identify memory leak in a process(C++ Application) I am using Windbg tool to identify the memory leak. 0:000> !heap -stat -h 02e10000 heap @ 02e10000 group-by: TOTSIZE max-display: 20 size #blocks total ( %) (percent of total busy bytes) 40 95857 - 25615c0 (60.70) 953130 1 [...] read more
My English skill is poor because I'm not a native English speaker. Please understand. I compiled some test code that operating alright in IAR with LLVM infra but the generated code was not operated on my test board. Detail are as follows. TEST GOAL I want to see operating the [...] read more
So a bit of a weird bug going on when getting a WM_KEYDOWN msg in my Window class. I have a Global WndProc function that determines which window instance it is and sends the message to it's own local WndProc function. //Every Windows Message will hit this function. LRESULT CALLBACK [...] read more