diff options
Diffstat (limited to 'cpp/test/uwp/controller/ViewController.xaml.h')
-rw-r--r-- | cpp/test/uwp/controller/ViewController.xaml.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/cpp/test/uwp/controller/ViewController.xaml.h b/cpp/test/uwp/controller/ViewController.xaml.h index 30f8b26d140..a5d22575866 100644 --- a/cpp/test/uwp/controller/ViewController.xaml.h +++ b/cpp/test/uwp/controller/ViewController.xaml.h @@ -33,20 +33,18 @@ public: ViewController(); virtual ~ViewController(); -protected: - - virtual void OnNavigatedTo(Windows::UI::Xaml::Navigation::NavigationEventArgs^ e) override; private: friend class MainHelperI; friend class ProcessControllerI; friend class ControllerHelper; HINSTANCE loadDll(const std::string&); + void unloadDll(const std::string&); void println(const std::string&); std::string getHost() const; void Hostname_SelectionChanged(Platform::Object^ sender, Windows::UI::Xaml::Controls::SelectionChangedEventArgs^ e); - std::map<std::string, HINSTANCE> _dlls; + std::map<std::string, std::pair<HINSTANCE, unsigned int>> _dlls; }; } |