This structure returns the last HtmlHelp() error code and description.
typedef struct tagHH_LAST_ERROR
{
int cbStruct ;
HRESULT hr ;
BSTR description ;
} HH_LAST_ERROR ;
| Member | Description |
|---|---|
| cbStruct | Specifies the size of the structure. This value must always be filled in before passing the structure to HtmlHelp(). |
| hr | Specifies the last error code. |
| description | Specifies a Unicode string containing a description of the error. |
| About structures | |