This command is called to properly shut down HTML Help. This function should be the last help command the application calls. HH_UNINITIALIZE should not be called during DLL process detach, but during the normal application shutdown process.
pszFile
dwData
Must be NULL.
Specifies a cookie. This is the cookie returned by HH_INITIALIZE.
Example
HtmlHelp(
NULL,
NULL,
HH_UNINITIALIZE,
(DWORD)dwCookie) ; // Pass in cookie.
Comments
Call HH_INITIALIZE before calling any other command and call HH_UNINITIALIZE only when your application ends. You should call these commands once during the life of your application.
Do not call HH_UNINITIALIZE before or at process detach.