Viewing WinError.h I noticed that there are two values HRESULT:
#define DISP_E_BUFFERTOOSMALL _HRESULT_TYPEDEF_(0x80020013L)
#define TYPE_E_BUFFERTOOSMALL _HRESULT_TYPEDEF_(0x80028016L)
both claimed that they allowed “buffering too small” text, and both of them had the same part of the “object” and differed only in the part of the “code”.
What is the difference between these two values?
source
share