Windows error 0x40080202, 1074266626

Detailed Error Information

HRESULT analysis[1]

FlagsSeveritySuccess

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.

Reserved (R)true
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode8 (0x008)
NameFACILITY_WINDOWS[1][2]
DescriptionThe source of the error code is the Windows subsystem.[1][2]
Error Code514 (0x0202)

Questions

4votes
0answers

How to find what is causing heap corruption (error 0xC0000374) in my Windows Store C# app?

My Win8 app started crashing out of blue due to a native exception. I then enabled the mixed (native + managed) debugger mode in VS and noticed the following: * Before the app crashes, I get in the Output toolwindow the following message: Critical error detected c0000374. * Then I [...] read more
c#
xaml
windows-store-apps
2votes
1answer

How to read WinRT errors?

While debugging my Universal Windows Application in the Visual Studio 2015 I noticed some errors in the output window: Exception thrown at 0x00007FFE25967788 (KernelBase.dll) in xxx.exe: 0x40080201: WinRT originate error (parameters: 0x0000000080072738, 0x00000000000000C2, 0x000000217DCFEFD0). Exception thrown at 0x00007FFE25967788 (KernelBase.dll) in xxx.exe: 0xE06D7363: Microsoft C++ Exception (parameters: 0xCCCCCCCC19930520, 0x000000217D6FD410, 0x00007FFE08A58AD0, 0x00007FFE08980000). [...] read more
windows
visual-studio
uwp
0votes
0answers

I get an error running the base C++ code for MongoDB with WIndows 10, Visual Studio 2019

I have a problem with running the basic C++ code for MongoDB. Works on Windows 10 with Visual Studio 2019. I was able to add libraries for mongocxx etc thanks to vcpkg. #include <iostream> #include <bsoncxx/builder/stream/document.hpp> #include <bsoncxx/json.hpp> #include <mongocxx/client.hpp> #include <mongocxx/instance.hpp> int main(int, char**) { mongocxx::instance instance{}; // This [...] read more
c++
windows
mongodb
visual-studio
compiler-errors
0votes
1answer

CredUIPromptForWindowsCredentials throws Microsoft C++ unhandled exception: winrt::hresult_error in background thread

Simplest C++ code that prompts user credential via CredUIPromptForWindowsCredentials API throws unhandled exception tied with XAML processing in background thread. Code sample: CString me(_T("MYLOGING")); CString url(_T("Header")); CString message(_T("Enter credentials for ...")); CREDUI_INFOW credInfo; credInfo.pszCaptionText = url; credInfo.hbmBanner = nullptr; credInfo.hwndParent = m_hWnd; credInfo.pszMessageText = message; credInfo.cbSize = sizeof(CREDUI_INFOW); DWORD bufferSize [...] read more
c++
windows
winrt-xaml
0votes
0answers

MRTK Not Recognizing Handtracking Input

I am currently using Unity with Microsoft's Mixed Reality Toolkit to create a simple game that places a square that can be moved using hand gesture's (air-tapped and dragged). So far I have attached the ManipulationHandler and NearInterationGrabbable to the square game object such as in the tutorial: Here. When [...] read more
unity3d
hololens
mrtk
0votes
1answer

App-crash on HoloLens(1st. gen)-Emulator when enabling 'Spatial Awareness System' in MRTK 2.3

i recently set up required software for development for the Microsoft HoloLens(1st. gen) with the newest version of the HoloLens(1st. gen) emulator (followed the MRTK-Guide: https://microsoft.github.io/MixedRealityToolkit-Unity/Documentation/GettingStartedWithTheMRTK.html#get-the-latest-mrtk-unity-packages). I already tested some example scenes from the MRTK on the emulator and everything works as expected. However, when i test the SpatialAwarenessMeshDemo, the [...] read more
windows
unity3d
hololens
windows-mixed-reality
hololens-emulator
0votes
0answers

Accelerometer outputs "WinRT transform error" when attempting to use it

In my WinRT application running on an ARM tablet (ie Surface), I'm trying to get events from the accelerometer sensor but it's not working. I attach to it this way, basically from Microsoft's example: mAccelerometer = Accelerometer::GetDefault(); mListenerToken = mAccelerometer->ReadingChanged::add(ref new TypedEventHandler<Accelerometer^, AccelerometerReadingChangedEventArgs^>(this, &AccelerometerWin8Delegate::ReadingChanged)); Unfortunately, this doesn't work. When an [...] read more
windows-8
windows-runtime

Comments

Leave a comment

(plain text only)

Sources

  1. https://msdn.microsoft.com/en-us/library/cc231198.aspx
  2. winerror.h from Windows SDK 10.0.14393.0

User contributions licensed under CC BY-SA 3.0