diff options
Diffstat (limited to 'plugins/PluginUpdater/src/DlgUpdate.cpp')
-rw-r--r-- | plugins/PluginUpdater/src/DlgUpdate.cpp | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/plugins/PluginUpdater/src/DlgUpdate.cpp b/plugins/PluginUpdater/src/DlgUpdate.cpp index 18fbe96960..ec16cd7f2f 100644 --- a/plugins/PluginUpdater/src/DlgUpdate.cpp +++ b/plugins/PluginUpdater/src/DlgUpdate.cpp @@ -23,6 +23,7 @@ Boston, MA 02111-1307, USA. static bool bShowDetails;
static HWND hwndDialog;
+HANDLE hCheckThread;
static void SelectAll(HWND hDlg, bool bEnable)
{
@@ -734,3 +735,21 @@ void UninitCheck() if (hwndDialog != NULL)
DestroyWindow(hwndDialog);
}
+
+INT_PTR MenuCommand(WPARAM,LPARAM)
+{
+ opts.bSilent = false;
+ DoCheck(true);
+ return 0;
+}
+
+void InitCheck()
+{
+ CreateServiceFunction(MODNAME"/CheckUpdates", MenuCommand);
+}
+
+void UnloadCheck()
+{
+ if (hCheckThread)
+ hCheckThread = NULL;
+}
\ No newline at end of file |