Windows error 0x00000438, 1080

Detailed Error Information

CANNOT_DETECT_DRIVER_FAILURE[1]

MessageFailure actions can only be set for Win32 services, not for drivers.
Declared inwinerror.h

This appears to be a raw Win32 error. More information may be available in error 0x80070438.

HRESULT analysis[2]

This is probably not the correct interpretation of this error. The Win32 error above is more likely to indicate the actual problem.
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)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode0 (0x000)
NameFACILITY_NULL[2][1]
DescriptionThe default facility code.[2][1]
Error Code1080 (0x0438)

Questions

13votes
4answers

Nvidia 3d Video using DirectX11 and SlimDX in C#

Good day, I am trying to display a real-time stereo video using nvidia 3DVision and two IP cameras. I am totally new to DirectX, but have tried to work through some tutorials and other questions on this and other sites. For now, I am displaying two static bitmaps for left [...] read more
c#
nvidia
direct3d
directx-11
slimdx
6votes
1answer

How to control stereo-frames separately with C#? (NVIDIA 3D shutter glasses)

I’m trying to make a very simple application which would display different images on each eye. I have Asus VG236H monitor and NVIDIA 3D Vision kit, the stereo 3D shutter glasses. The I’m using C#, .NET Framework 2.0, DirectX 9 (Managed Direct X) and Visual Studio 2008. I have been [...] read more
c#
directx
nvidia
stereo-3d
5votes
1answer

Inneractive Ads cause a lot of App crashes (Windows Phone)

I use InnerActive as my default Ad provide for my Windows Phone apps. I being using it since June 2013 and on my end of year analysis I realized InnerActive ads are my main source of my app crashes. The worst part is, it's code don't I don't have any [...] read more
windows-phone-7
windows-phone-8
windows-phone
ads
3votes
1answer

NV_STEREO_IMAGE_SIGNATURE and DirectX 10/11 (nVidia 3D Vision)

I'm trying to use SlimDX and DirectX10 or 11 to control the stereoization process on the nVidia 3D Vision Kit. Thanks to this question I've been able to make it work in DirectX 9. However, due to some missing methods I've been unable to make it work under DirectX 10 [...] read more
c#
directx
nvidia
slimdx
stereoscopy
2votes
0answers

mspgcc-size ROM/RAM usage in percentage

With mspgcc-size I can get an output like this: text data bss dec hex 13072 236 65296 78604 1330c We know that: Flash = data + text RAM = data + bss How can I extract the size of ROM/RAM from the selected -mmcu=msp430g2553 with the toolchain? e.g. ROM: 8192 [...] read more
microcontroller
avr-gcc
toolchain
1vote
0answers

Android Linker Script - Missing PT_DYNAMIC

I am attempting to run the following sample Android program that prints out the size of a function. #include <stdio.h> extern unsigned char func_start; extern unsigned char func_end; int func(void) __attribute__((section(".func"))); int func(void) { return 0; } int main(int argc, char **argv) { size_t func_size = &func_end - &func_start; printf("%zu\n", [...] read more
android
c
android-ndk
linker
linker-errors
1vote
2answers

How to catch system.xml.xmlexception

I published a small free App for Windows Phone 8 Smartphones (to get to know C# - so I am a beginner in programming). A lot of my users seem pretty happy with the functionality but some of them seem to keep getting random crashes (for example in Canada: http://www.windowsphone.com/en-ca/store/app/picture-of-the-day/fc977a34-c09d-4c70-8a7b-66b6f09ab7f0) [...] read more
c#
.net
visual-studio
windows-phone-8

Comments

Leave a comment

(plain text only)

Sources

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

User contributions licensed under CC BY-SA 3.0