summaryrefslogtreecommitdiff
path: root/plugins/GmailNotifier/src/utility.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/GmailNotifier/src/utility.cpp')
-rw-r--r--plugins/GmailNotifier/src/utility.cpp77
1 files changed, 0 insertions, 77 deletions
diff --git a/plugins/GmailNotifier/src/utility.cpp b/plugins/GmailNotifier/src/utility.cpp
deleted file mode 100644
index 27d8aac1f3..0000000000
--- a/plugins/GmailNotifier/src/utility.cpp
+++ /dev/null
@@ -1,77 +0,0 @@
-#include "stdafx.h"
-
-void BuildList(void)
-{
- g_accs.destroy();
-
- for (auto &hContact : Contacts(MODULENAME)) {
- ptrA szName(g_plugin.getStringA(hContact, "name"));
- if (szName != nullptr) {
- Account *p = new Account;
- p->hContact = hContact;
- mir_strcpy(p->name, szName);
- CallService(MS_IGNORE_IGNORE, hContact, IGNOREEVENT_USERONLINE);
-
- ptrA szPassword(g_plugin.getStringA(hContact, "Password"));
- if (szPassword != nullptr)
- mir_strcpy(p->pass, szPassword);
- g_accs.insert(p);
- }
- }
-
- for (auto &acc : g_accs) {
- char *tail = strchr(acc->name, '@');
- if (tail && mir_strcmp(tail + 1, "gmail.com") != 0)
- mir_strcpy(acc->hosted, tail + 1);
- acc->IsChecking = false;
- }
-}
-
-BOOL GetBrowser(char *str)
-{
- HKEY hKey = nullptr;
- char *strKey;
- char strIE[] = "Applications\\iexplore.exe\\shell\\open\\command";
- char strDefault[] = "https\\shell\\open\\command";
- DBVARIANT dbv;
-
- if (opt.OpenUsePrg == 1)
- strKey = strIE;
- else if (opt.OpenUsePrg == 0)
- strKey = strDefault;
- else {
- if (!g_plugin.getString("OpenUsePrgPath", &dbv)) {
- mir_strcpy(str, dbv.pszVal);
- db_free(&dbv);
- }
- else *str = 0;
- return FALSE;
- }
-
- // Open the registry
- if (RegOpenKeyExA(HKEY_CLASSES_ROOT, strKey, 0, KEY_READ, &hKey) == ERROR_SUCCESS) {
- // Data size
- DWORD cbData = 0;
- // Get the default value
- if (RegQueryValueExA(hKey, nullptr, nullptr, nullptr, nullptr, &cbData) == ERROR_SUCCESS && cbData > 0) {
- if (RegQueryValueExA(hKey, nullptr, nullptr, nullptr, (LPBYTE)str, &cbData) == ERROR_SUCCESS) {
- if ((strKey = strstr(str, "%1")) != nullptr)
- *(strKey--) = '\0';
- if ((strKey = strstr(str, "-")) != nullptr)
- *(strKey--) = '\0';
- RegCloseKey(hKey);
- return TRUE;
- }
- }
- }
- return FALSE;
-}
-
-Account* GetAccountByContact(MCONTACT hContact)
-{
- for (auto &it : g_accs)
- if (it->hContact == hContact)
- return it;
-
- return nullptr;
-}