summaryrefslogtreecommitdiff
path: root/init.cpp
diff options
context:
space:
mode:
authorGluzskiy Alexandr <sss123next@list.ru>2010-07-16 13:59:44 +0300
committerGluzskiy Alexandr <sss123next@list.ru>2010-07-16 13:59:44 +0300
commitc4a68366af174e654d5735f244bf3beb8a81b143 (patch)
tree3a4540b0a57b02729d4fe9a6910981a732328322 /init.cpp
parent369c4ad5aedc204c4478381122880f3688fb34b8 (diff)
used list<> from stl instead of my own implementation
Diffstat (limited to 'init.cpp')
-rw-r--r--init.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/init.cpp b/init.cpp
index 80ad08f..e122349 100644
--- a/init.cpp
+++ b/init.cpp
@@ -16,7 +16,6 @@
#include "commonheaders.h"
-
#define PLUGIN_NAME "juick"
HINSTANCE hInst;
@@ -24,8 +23,7 @@ static HANDLE hAccountsChanges, hDbContactAdded;
PLUGINLINK *pluginLink;
static int OnModulesLoaded(WPARAM wParam,LPARAM lParam);
extern char *date();
-JabberAccount Accounts;
-int JabberAccountsCount = 0;
+list <JabberAccount*> Accounts;
struct MM_INTERFACE mmi;
struct UTF8_INTERFACE utfi;