Windows error 0x0004D004, 315396

Detailed Error Information

XACT_S_OKINFORM[1]

MessageNo changes were made during this call, but the sink wants another chance to look if any other sinks make further changes.
Declared inwinerror.h

HRESULT analysis[2]

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
FacilityCode4 (0x004)
NameFACILITY_ITF[2][1]
DescriptionThe source of the error code is COM/OLE Interface management.[2][1]
Error Code53252 (0xd004)

Questions

1vote
2answers

C++ put byte array to function

Why if I send a command to DeviceIoControl: byte lpInBuffer[44] = { 0x2C, 0x00, 0x00, 0x00, 0x01... }; byte lpOutBuffer[88]; BOOL result = DeviceIoControl(open, 0x0004D004, lpInBuffer, sizeof(lpInBuffer), &lpOutBuffer, sizeof(lpOutBuffer), 0x00000000, 0x00000000); err = GetLastError(); // cout << "result:" << result << ", err: " << err << "\n"; result is [...] read more
c++
byte

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