diff options
author | George Hazan <george.hazan@gmail.com> | 2012-07-06 22:24:29 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-07-06 22:24:29 +0000 |
commit | 75822327172aac61e3834ebdeb91f799c210345c (patch) | |
tree | f0cb8ea63cfeac43b34af12aed765de2b4d60966 /src/core/stduserinfo/main.cpp | |
parent | b8a20c7e3e0dca06effc09868bc5cf1702be30cf (diff) |
fix for the problem with UserInfoEx
git-svn-id: http://svn.miranda-ng.org/main/trunk@804 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src/core/stduserinfo/main.cpp')
-rw-r--r-- | src/core/stduserinfo/main.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/stduserinfo/main.cpp b/src/core/stduserinfo/main.cpp index 88ed31e921..8b413abab4 100644 --- a/src/core/stduserinfo/main.cpp +++ b/src/core/stduserinfo/main.cpp @@ -22,6 +22,7 @@ with this program; if not, write to the Free Software Foundation, Inc., #include "commonheaders.h"
int LoadUserInfoModule(void);
+int LoadContactsModule(void);
CLIST_INTERFACE* pcli;
TIME_API tmi;
@@ -75,6 +76,7 @@ extern "C" int __declspec(dllexport) Load(void) enableThemeDialogTexture = (pfnEnableThemeDialogTexture)GetProcAddress(hThemeAPI, "EnableThemeDialogTexture");
}
+ LoadContactsModule();
LoadUserInfoModule();
return 0;
}
|