Where can I find documentation that describes the meaning of error codes returned by regsvr32, such as 0x80070716?
相关问题
- Is there a way to report errors in Apple documenta
- Mathematical notion/superscripts in Rd files
- Doxygen : Display warning for undocumented method
- Embedding images in CHM help file with Sandcastles
- Ruby openssl documentation [closed]
相关文章
- Add XML documentation / comments to properties/fie
- HelpInsight documentation in Delphi 2007
- The module “.dll” was loaded but the entry-point w
- How do I document a constructor for a class using
- Facebook Android SDK request parameters: where fin
- Possible to view method / function docs in NetBean
- What are error -10004 and error -10000 in Applescr
- reST: inline links with arbitrary titles?
I think it means you don't have adequate permissions. See winerror.h:
And this on interpreting HRESULTs.
Edit:
Wrong bits, it's actually:
The error is defined in
winerror.h
. Microsoft's reference is at System Error Codes.In my case the error code is 0x0716, which is 1814L. This error code corresponds to
ERROR_RESOURCE_NAME_NOT_FOUND
.