]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/helpchm.cpp
use wxUniv's setup
[wxWidgets.git] / src / msw / helpchm.cpp
index 88dff23aab0bda1c4e7f2a596592199340925fce..ab91913ff24365adea9ffca20f9620246aa52724 100644 (file)
 
 #include "wx/dynlib.h"
 
 
 #include "wx/dynlib.h"
 
+#ifndef WX_PRECOMP
+    #include "wx/intl.h"
+    #include "wx/app.h"
+#endif
+
 #include "wx/msw/private.h"
 
 // instead of including htmlhelp.h, duplicate the things from it we need here
 #include "wx/msw/private.h"
 
 // instead of including htmlhelp.h, duplicate the things from it we need here
@@ -101,26 +106,25 @@ struct HH_AKLINK
 
 // dll symbol handle
 static HTMLHELP gs_htmlHelp = 0;
 
 // dll symbol handle
 static HTMLHELP gs_htmlHelp = 0;
-static wxPluginLibrary *gs_libHtmlHelp = NULL;
 
 static bool LoadHtmlHelpLibrary()
 {
 
 static bool LoadHtmlHelpLibrary()
 {
-    gs_libHtmlHelp = wxPluginManager::LoadLibrary( _T("HHCTRL.OCX"), wxDL_DEFAULT | wxDL_VERBATIM );
+    wxPluginLibrary *lib = wxPluginManager::LoadLibrary( _T("HHCTRL.OCX"), wxDL_DEFAULT | wxDL_VERBATIM );
 
 
-    if( !gs_libHtmlHelp )
+    if( !lib )
     {
         wxLogError(_("MS HTML Help functions are unavailable because the MS HTML Help library is not installed on this machine. Please install it."));
         return FALSE;
     }
     else
     {
     {
         wxLogError(_("MS HTML Help functions are unavailable because the MS HTML Help library is not installed on this machine. Please install it."));
         return FALSE;
     }
     else
     {
-        gs_htmlHelp = (HTMLHELP)gs_libHtmlHelp->GetSymbol( HTMLHELP_NAME );
+        gs_htmlHelp = (HTMLHELP)lib->GetSymbol( HTMLHELP_NAME );
 
         if( !gs_htmlHelp )
         {
             wxLogError(_("Failed to initialize MS HTML Help."));
 
 
         if( !gs_htmlHelp )
         {
             wxLogError(_("Failed to initialize MS HTML Help."));
 
-            gs_libHtmlHelp->UnrefLib();
+            lib->UnrefLib();
             return FALSE ;
         }
     }
             return FALSE ;
         }
     }
@@ -130,10 +134,9 @@ static bool LoadHtmlHelpLibrary()
 
 static void UnloadHtmlHelpLibrary()
 {
 
 static void UnloadHtmlHelpLibrary()
 {
-    if( gs_htmlHelp )
+    if ( gs_htmlHelp )
     {
         wxPluginManager::UnloadLibrary( _T("HHCTRL.OCX") );
     {
         wxPluginManager::UnloadLibrary( _T("HHCTRL.OCX") );
-        gs_libHtmlHelp->UnrefLib();
 
         gs_htmlHelp = 0;
     }
 
         gs_htmlHelp = 0;
     }