Windows error 0x001F0001, 2031617

Detailed Error Information

ERROR_FLT_IO_COMPLETE[1]

MessageThe IO was completed by a filter.
Declared infltWinError.h

ERROR_FLT_IO_COMPLETE[2]

MessageThe IO was completed by a filter.
Declared inwinerror.h

HRESULT analysis[3]

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
FacilityCode31 (0x01f)
NameFACILITY_USERMODE_FILTER_MANAGER[3][2]
DescriptionThe source of the error code is the user mode filter manager.[3][2]
Error Code1 (0x0001)

Questions

6votes
4answers

WinDBG doesn't display source lines despite loading private pdb files

I am trying to debug a problem in a native DLL using WinDBG. I believe that I have the private symbols loaded, but WinDBG is not displaying the source lines or parameter information. Here is what I am observing; any help would be greatly appreciated! I have the PDB which [...] read more
dll
debugging
windbg
1vote
1answer

An error about using binplace.exe in batch-files

I want to remove private symbol from a symbol file using binplace.exe, I saved the following command into a batch file 'parse.bat': binplace -a -x -s %_NTTREE%\stripped -n %_NTTREE%\full my-executable-file-name. The question is: When I executed the parse.bat from command-line, binplace can generate stripped symbol file properly, but if I [...] read more
windows
batch-file
-2votes
1answer

C# / Send keys combination (CTRL+S) to another window

I am trying to send keys combination to another program like that: // keydown ctrl SendMessage(windowBracketsKeyListener, 0x100, (IntPtr)VK_CONTROL, (IntPtr)0x001D0001); // keydown S SendMessage(windowBracketsKeyListener, 0x100, (IntPtr)VK_S, (IntPtr)0x001F0001); SendMessage(windowBracketsKeyListener, 0x102, (IntPtr)115, (IntPtr)0); // keyup ctrl SendMessage(windowBracketsKeyListener, 0x101, (IntPtr)VK_CONTROL, (IntPtr)0xC01D0001); To the last line I have an error (look at the image below). [...] read more
c#
winapi
window
sendkeys
sendmessage

Comments

Leave a comment

(plain text only)

Sources

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

User contributions licensed under CC BY-SA 3.0