Windows error 0x000000E2, 226

Detailed Error Information

VIRUS_DELETED[1]

MessageThis file contains a virus or potentially unwanted software and cannot be opened. Due to the nature of this virus or potentially unwanted software, the file has been removed from this location.
Declared inwinerror.h

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

MANUALLY_INITIATED_CRASH[2]

This is a Blue Screen of Death stop code. More information is available in the Knowledge Base article Bug Check 0xE2: MANUALLY_INITIATED_CRASH.

HRESULT analysis[3]

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[3][1]
DescriptionThe default facility code.[3][1]
Error Code226 (0x00e2)

Questions

2votes
1answer

Excel-VBA with C++ DLL sometimes crashes

I made really simple c++ dll with only one function: int DLL_EXPORT __stdcall foo(double *source){return 0;} and I'm trying to use it like that: Option Explicit Private Declare PtrSafe Function LoadLibrary Lib "kernel32" Alias "LoadLibraryA" (ByVal lpLibFileName As String) As LongPtr Private Declare PtrSafe Function FreeLibrary Lib "kernel32" (ByVal hLibModule [...] read more
c++
vba
excel
dll
0votes
2answers

LoadLibrary cannot find ntoskrnl

I am writing a small app which calls KeBugCheck and crashes the system but LoadLibrary is unable to find ntoskrnl.exe (I get 126 as return value when calling GetLastError) Here is my code: void* fnc; HMODULE bcLib; bcLib = LoadLibrary((LPCWSTR)"ntoskrnl.exe"); fnc = (void*) GetProcAddress(bcLib, (LPCSTR)"KeBugCheck"); int(*KeBugCheck)(ULONG); KeBugCheck = (int(*)(ULONG))fnc; KeBugCheck(0x000000E2); [...] read more
c++
windows
winapi
visual-c++
loadlibrary
-1votes
2answers

Workaround Reserved Words

I have a table called Candidates with fields C_ID, C_Surname, C_Names and C_Gender. The word NAMES is reserved in Microsoft Jet 4.0 and therefore the SQL statement SELECT C_Names AS Names does not work. Is there any workaround to use the word Names as an identifier? NOTE: My method of [...] read more
sql
ado
ms-access-2013
delphi-xe8

Comments

Leave a comment

(plain text only)

Sources

  1. winerror.h from Windows SDK 10.0.14393.0
  2. https://docs.microsoft.com/en-us/windows-hardware/drivers/debugger/bug-check-code-reference2
  3. https://msdn.microsoft.com/en-us/library/cc231198.aspx

User contributions licensed under CC BY-SA 3.0