Open tajbender opened 1 month ago
You may https://searchcode.com/?q=0x80070490 give a try.
I've found some naming, e.g. in WIX: https://searchcode.com/file/28621585/src/ext/BalExtension/mba/core/NativeMethods.cs/
internal const int E_NOTFOUND = unchecked((int)0x80070490);
Regards, tajbender
Is your feature request related to a problem? Please describe.
I found a COM HResult error constant, that isn't present in Vanara
Describe the additions or enhancements you'd like
I've found HResult
0x80070490
which I use in an Application that deals with Shell32 objects using Vanara. The code is used in Vanara itself, as found here:and here:
Previous work
I've found this HResult by Try & Error. It is fired when, as far as I remember, someone tries to enumerate an empty disk drive.
I've called it
HResult_ElementNotFound
, but I don't know if this is official naming.Your thoughts on this?